檔案讀寫使用open()函式,語法規則如下:
讀檔案:
#file=open(file_name,mode)
file=open("text.txt","r")
#讀檔案
file.read()
file.close()
寫檔案:
(注意:如果沒有close,檔案裡面就沒有內容)
file=open("test.txt","w")
#寫入一行
file.write("hello world")
#寫入多行
file.writelines(["hello world \n","i am kelly"])
file.close()
在原有檔案上追加:
file=open("text.txt","a")
file.write("kkk")
file.close()
15 Python中的裝飾器
裝飾器裝飾函式的一般形式如下 定義修飾器 defdecorater fun defnew fun args,kwargs 語句1 fun args,kwargs 語句2 return new fun 呼叫修飾器 decorater deffunction pass裝飾函式示例 定義裝飾器 defmy...
Python筆記(15)檔案讀與寫詳解
user bin env python coding utf 8 author berlin 注意 1 檔案只有三種模式 r代表只能讀 w代表只能寫 a代表可以在文末追加文字 2 在w模式下,開啟open檔案時,又接著write新的文字。那麼結果是 清空原檔案的內容,寫入新的內容。這種情況會造成刪庫...
Python 檔案的讀取與顯示
示例 1 當 被開啟檔案與程式在同一目錄下時 建立檔案 pi dogits.txt 與 檔案在同乙個目錄 下以下為示例截圖 通過函式open 開啟檔案,再通過read 函式讀取 with open pi digits.txt as file object contents file object.r...