python中的對檔案的讀寫

2022-09-07 18:24:16 字數 1343 閱讀 9965

open函式獲取檔案,w是寫許可權,可以對檔案進行io操作

file=open('c:/users/administrator/desktop/yes.txt','w')

file.write('hello world')

初級難度:定義方法,輸入文字名稱,和文字內容,方法可以據此建立對應的檔案,寫入對於的文字;

#encoding:utf-8

defcreatefile

(filename,content):

filepath="c:/users/administrator/desktop/"

fullpath=filepath+filename+'.txt'

file=open(fullpath,'w')

file.write(content)

file.close()

print ("操作完成!")

#嘗試呼叫

createfile("1","建立乙個檔案")

將指定的文字進行替換 返回

#   文字替換的方法

deftextfilter

(content,sourceword,trgtword):

return content.replace(sourceword,trgtword)

對於輸入的文字進行替換後,儲存到制定的文字中

#encoding:utf-8

# 文字替換的方法

deftextfilter

(content,sourceword,trgtword):

return content.replace(sourceword,trgtword)

# 定義文字的建立

defcreatefile

(filename,content):

filepath="c:/users/administrator/desktop/"

fullpath=filepath+filename+'.txt'

file=open(fullpath,'w')

content=textfilter(content,'好','壞')

file.write(content)

file.close()

print ("操作完成!")

#嘗試呼叫

createfile("123","今天天氣真好")

python中對檔案的讀寫

檔案 將資料儲存到硬碟中 資料持久化 開啟檔案 open 檔案路徑,訪問模式 w write 寫入模式,只能寫,不能讀 f open 123.txt w 寫入資料 只能是字串 f.write hello world 關閉檔案 檔案操作完必須要關閉,否則檔案占用記憶體將無法釋放 記憶體洩漏 明知沒有用...

python對檔案的讀寫操作

python對多個json物件的json檔案讀取 參考部落格 with open data path,r encoding utf 8 as f for item in jsonlines.reader f item是按行讀取的乙個json物件 print item python寫入檔案 a 表示不...

VC中對檔案的讀寫

注意 1 由於c是緩衝寫 所以要在關閉或重新整理後才能看到檔案內容 2 電腦處理文字型和二進位制型的不同 因為電腦只認識二進位制格式 方法一 用c 的方法 寫檔案 ofstream ofs 4.txt 如果我們要用這個類 我們就需要先 include ofs.write hello strlen h...