def readfile(filename,mode = 'r'):
"""讀取檔案內容
@filename 檔名
return string(bin) 若檔案不存在,則返回空字串
"""import os
if not os.path.exists(filename):return""
fp = open(filename,mode,encoding="utf-8")
f_body = fp.read()
fp.close()
return f_body
#讀取文字檔案
txt = readfile("員工資訊.txt")
print(txt)
執行結果:
def writefile(filename,s_body,mode='w+'):
"""寫入檔案內容
@filename 檔名
@s_body 欲寫入的內容
"""fp = open(filename,mode)
fp.write(s_body)
fp.close()
#寫入文字檔案
writefile("1.txt","hello world!")
執行結果: python 讀寫文字檔案
本人最近新學python 用到文字檔案的讀取,經過一番研究,從網上查詢資料,經過測試,總結了一下讀取文字檔案的方法.a f open filename r content f.read decode utf 8 b f codecs.open encoding utf 8 content f.rea...
讀寫文字檔案
讀文字 function readtext filename string string vars string alltext string f textfile begin assignfile f,filename 將c myfile.txt檔案與f變數建立連線,後面可以使用f變數對檔案進行操...
Python 逐行讀寫文字檔案
filereadobj open input.txt filewriteobj open output.txt w filelinetext filereadobj.readline while filelinetext string filelinetext filewriteobj.write ...