python檔案操作

2021-08-03 17:03:41 字數 526 閱讀 5350

檔案讀寫:

fi=open('path and filename','mode')

fi.read() #檢視檔案中的資料

fi.readline() #每次讀取一行

fi.readlines() #讀取所有資料,但將每一行的資料作為列表的乙個元素,最後返回乙個列表

fi.writelines() #和readlines()類似,實現多行寫入

fi.seek(偏移量,選項)

#選項為0:表示將檔案指標指向從檔案頭部到偏移量位元組處

# 1:表示將檔案指標從當前位置,向後移動偏移量位元組處

# 2:將檔案指標從檔案尾部,向前移動偏移量位元組處

fi.flush() #提交更新

fi.close() #關閉檔案

python 檔案操作

簡明 python 教程 中的例子,python 執行出錯,用open代替file 可以執行。poem programming is fun when the work is done if you wanna make your work also fun use python f open e ...

python檔案操作

1,將乙個路徑名分解為目錄名和檔名兩部分 a,b os.path.split c 123 456 test.txt print a print b 顯示 c 123 456 test.txt 2,分解檔名的副檔名 a,b os.path.splitext c 123 456 test.txt pri...

Python 檔案操作

1.開啟檔案 如下 f open d test.txt w 說明 第乙個引數是檔名稱,包括路徑 第二個引數是開啟的模式mode r 唯讀 預設。如果檔案不存在,則丟擲錯誤 w 只寫 如果檔案 不存在,則自動建立檔案 a 附加到檔案末尾 r 讀寫 如果需要以二進位制方式開啟檔案,需要在mode後面加上...