1. 程式人生 > >python-讀取txt檔案

python-讀取txt檔案

TXT檔案內容:

1.全部讀取

程式碼:

file = open("E:\others\測試.txt","r")#開啟檔案
f_all = file.read()#讀取所有檔案內容
print(f_all)
file.close()#關閉檔案

結果:

2.按行讀取

程式碼:

file = open("E:\others\測試.txt","r")#開啟檔案
for line in file:
    line = line.strip()#移除字串頭尾指定的字元(預設為空格)
print(line)#一行一行輸出
file.close()#關閉檔案

結果:

3.寫檔案(同w+)

程式碼:

file = open("E:\others\測試.txt"
,"w") file.write("6546546")

結果:

4.尾部追加(同a+)

程式碼:

file = open("E:\others\測試.txt","a")
file.write("6546546")

結果:

5.取代第一行

程式碼:

file = open("E:\others\測試.txt","r+")
file.write("6546546")

結果:


其他: