codecs 模組: 處理檔案操作過程中的亂碼問題。
f=codecs.open('fxh.txt','r+') #開啟檔案
開啟的模式:
r , w , a ,b , r+ , w+ ....
常用的方法:
read() 讀取檔案中內容
write() 寫入內容,必須傳入字串
writeline() 寫入內容,必須傳入乙個序列
next() 游標後的下一行
seek() 設定游標的位置
tell() 檢視游標的位置
flush() 重新整理到磁碟
name 檔名
closed 是否關閉,關閉則返回true
使用with 開啟檔案:(使用with開啟的檔案不用自己手動關閉)
eg:列印檔案的特定行。
with codecs.open('fxh.txt','r+') as fd:#text=fd.read()
for line,value in enumerate(fd):
if line == 2-1:
print(value)
上面的實現也可以使用乙個模組來實現:
import linecachetest=linecache.getline('fxh.txt',2)
print(test)
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後面加上...