Python檔案操作

2022-03-17 03:21:10 字數 1706 閱讀 7400

f = open("

test.txt

","r

",encoding='

utf-8')

data = f.read()

print(data)

f = open("

test.txt

","w

",encoding='

utf-8

')#寫入,是通過建立新檔案的方式,如果有重複的名字的檔案,會清空舊的內容。

f.write(

"呵呵噠\n

")#\n是換行符

f.close()#關閉檔案

f = open("

test.txt

","a

",encoding='

utf-8')

f.write(

"呵呵噠")

f.close()

#

cheng

f = open("

test.txt

","r

",encoding='

utf-8')

print

(f.readline())#讀一行

f.close()

f = open("

test.txt

","r

",encoding='

utf-8')

for i in range(5):  #讀五行

print

(f.readline())

f.close()

另一種方式readlines

首先看一下readlines輸出的內容是什麼樣子

它會把檔案內容轉化為乙個列表。

接下來我們輸出想要的內容

#

cheng垃圾的寫法

f = open("

test.txt

","r

",encoding='

utf-8')

count =0

for line in

f.readlines():

if count <= 9:#

取出前十行

print

(line.strip())

count += 1

else

: exit()

f.close()

注意:這麼讀小檔案沒事,讀大檔案需要先把檔案存到記憶體中,會導致程式卡死。

高階寫法(迭代器)#

#

cheng

f = open("

test.txt

","r

",encoding='

utf-8')

count =0

for line in f:#

因為檔案指標不會往回走,所以也是逐行。

if count <= 9:

print

(line)

count += 1

else

: exit()

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