Python 檔案讀取

2022-08-21 12:12:14 字數 568 閱讀 5737

'''

txt

mode a追加 r唯讀 w寫 rb二進位制讀 wb 二進位制寫 預設r

f.read() 讀取整個檔案 返回字串

f.readlines() 讀取整個檔案 返回行的列表

f.readline() 每次只讀取一行 返回字串

f.read() 傳入字串

f.readlines() 傳入列表

encoding="" 設定編碼

'''with open('temp.txt', encoding='utf8', mode='a') as f:

f.readlines()

# f.write(json.dumps(data, ensure_ascii=false) + '\n') json格式寫入

'''csv

'''import csv

with open(filepath, 'a', encoding='utf-8-sig') as csvfile:

f = csv.writer(csvfile)

f.writerows() # 傳入列表

python高階讀取檔案 Python讀取檔案內容

開啟檔案之後,就可以讀取檔案的內容,檔案物件提供多種讀取檔案內容的方法。開啟test.txt檔案 f open test.txt r 開啟test.txt檔案 f.close 關閉檔案 test.txt檔案有以下內容 hello world.hello python.hello imooc.讀取若干...

Python檔案讀取

python提供了多種方法實現檔案讀取操作 1 read 2 readline 3 readlines 4 xreadlines 很多人也在糾結到底應該選擇哪種方式,甚至疑問在處理大檔案時應該選擇哪種方式,因為擔心檔案過大導致記憶體佔用率過高甚至無法完全載入。其實,這個問題是多餘的,在引入了迭代器和...

python檔案讀取

1.讀取txt檔案 read 讀取整行檔案 readline 讀取一行資料 readines 讀取所有行的資料 讀取txt檔案 user file open user info.txt r lines user file.readlines forline inlines username line...