python檔案操作

2021-08-18 18:09:04 字數 2381 閱讀 5102

一、python檔案操作

1、對檔案操作流程**

1.1、檔名(或者是檔案的絕對路徑) 

1.2、操作許可權(r讀、w寫、b以二進位制的方式開啟、a追加寫入)

2、檔案物件f.常用的操作方法**

read()    把檔案的所有內容都讀取出來,返回乙個字串 

write(data)   把字串data寫入到檔案中,只接受字串引數 data=」test」 

readline   按行讀取檔案,呼叫一次讀取一行。

readlines      讀取整個檔案按行返回到list中。

name()    檔案名字 

fileno()    檔案描述符 

close()    關閉檔案 

encoding()   檔案編碼 

closed()     判斷檔案是否關閉(返回bool值:true或false) 

seek(offset,whence)   offset偏移量(正數向後偏移,負數向前偏移) ;whence(0開頭 1現在位置 2結尾) 

tell()           返回檔案游標位置 

truncate(size)      有寫許可權可以使用,清空檔案,size表示清空到什麼位置,0位清空所有,例如:truncate(1) 保留1位

3、例項操作

3.1讀取檔案內容:       ps:讀取的檔案必須存在。

f1 = open("1.txt", "r")

print(f1.read())

f1.close()

讀的檔案:

例2:寫入檔案內容
f2 = open("1.log","w",encoding='utf-8')

f2.write("hello world\n123\n你好\n小白")

f2.close()

指定編碼型別,否則會顯示為亂碼。

encodeing ="utf-8"f = open("3.txt","w",encoding=encodeing)

f.write("\n學好py")

f.close()

f = open("3.txt","a")

f.write("\nwork hard"))

f.close()

readlines        讀取整個檔案按行返回到list中。

f = open("3.txt","r",encoding=encodeing)

print(f.readline())

print(f.readline())

print(f.readline())

print(f.readline())

print(f.readline())

f.close()

f = open("3.txt","r",encoding=encodeing)

print(f.readlines())

f.close()

f = open("3.txt","r", encoding=encodeing)

fori,lineinenumerate(f.readlines()):

print("第行內容: {1}".format(i,line))

f.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後面加上...