Python讀寫txt檔案

2021-10-18 10:45:11 字數 644 閱讀 9304

最近,我在嘗試用python製作乙個簡單的桌面軟體,但其中遇見幾個小問題想給大家分享一下

一般檔案讀寫都是這樣的:

#讀取

f =open

("./test.txt"

,'r'

)txt=f.read(

)f.close

#寫入with

open

("./test.txt"

,"w"

)as f:

f.write(

"nothing"

) f.close

那,有遇見檔案不存在,無法讀取的情況嗎?

如果不怕煩…那就這樣:

try

: f =

open

("./test.txt"

,'r'

) ds=f.read(

) f.close

return ds

except

:with

open

("./test.txt"

,"w"

)as f:

f.write("")

f.close

return

""

Python 讀寫txt檔案

1 讀取 usr bin python coding utf 8 import os str r c users d1 desktop test.txt f open str,r content f.read print content f.close 2 寫入 str c users d1 des...

python檔案txt讀寫

在鍵盤隨便敲了幾個字並建立了乙個文字檔案 1.txt 我們要使用python將其進行讀寫操作 1 檔案讀寫操作 讀檔案1.txt 使用open和read f open 1.txt print f.read f.close 輸出 de鍝堝搱dfafadsfasdfasd fasdfasdfjasdkh...

python讀寫txt檔案

整理平常經常用到的檔案物件方法 f.readline 逐行讀取資料 方法一 1 f open tmp test.txt 2 f.readline 3 hello girl n 4 f.readline 5 hello boy n 6 f.readline 7 hello man 8 f.readli...