python 檔案操作

2022-06-19 16:45:09 字數 1110 閱讀 3308

"+" 表示可以同時讀寫某個檔案

覆蓋寫入

ss='

世情薄,人情惡,雨送黃昏花易落。

'with open(

'1.txt

', '

w', encoding='

utf-8

') as f:

f.write(ss)

f.close()

view code

1.

try

: f=open('

1.txt

','r

',encoding='

utf-8')

print

(f.read())

finally

:

iff:

f.close()

view code

2.逐行讀取

try

: f=open('

1.txt

','r

',encoding='

utf-8')

print(f.readlines())#

一次讀取每一行組成列表

print(f.readline())#

每次讀取一行

finally

:

iff:

f.close()

view code

f1=open('

my.png

','rb')

with open(

'my1.png

', "wb"

) as f:

for line in

f1: f.write(line)

view code

file_obj = request.files.get("

kouge")

with open(file_obj.name, "wb

") as f:

for line in

file_obj.chunks():

f.write(line)

view code

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