python 讀寫檔案 open

2021-09-09 05:25:52 字數 862 閱讀 6396

io 檔案讀寫

讀:

f =

open

('/users/panbingqing/desktop/test/a.rtf'

)#讀模式,不可做任何修改

#將整個檔案內容讀取為乙個字串值,使用read()方法

f1 = f.read(

)#or use readlines()將整個檔案讀取為列表

f2 = f.readlines(

)type

(f2)

#str

type

(f1)

#list

寫:io 寫檔案,'w』以覆寫模式開啟,'a』以新增模式開啟,兩者都會建立乙個新的空檔案,最後要呼叫close()方法

f3 =

open

('/users/panbingqing/desktop/test/f3.txt'

,'w'

)f3.write(

'hello world!\n'

)f3.close(

)f4 =

open

('/users/panbingqing/desktop/test/f3.txt'

,'a'

)f4.write(

'bacon is nor a vegetable'

)f4.close(

)f5 =

open

('/users/panbingqing/desktop/test/f3.txt'

)content = f5.read(

)f5.close(

)print

(content)```

Python中open讀寫檔案操作

python內建了讀寫檔案的函式open f open users michael test.txt r r 表示讀,我可以可以利用這個方法開啟乙個檔案,如果檔案不存在,會丟擲乙個ioerror的錯誤,並且給出錯誤碼和詳細資訊告訴你檔案不存在。如果檔案開啟成功,我們接下來就要讀檔案操作了 f.rea...

Python 讀寫文字(open)

character meaning r open for reading default w open for writing,truncating the file first a b binary mode t text mode default open a disk file for upd...

python檔案讀寫操作 內建open 函式

python中的open 方法是用於開啟乙個檔案,如果該檔案損壞或者無法開啟,會丟擲 oserror 完整語法格式 open file,mode r buffering none,encoding none,errors none,newline none,closefd true open 函式常...