方法一:
with open("test.txt","w") as file:
file.write("hello")
注釋:
1.open()函式第乙個引數為檔名
如果檔案不存在將建立檔案,若檔案存在則覆蓋原檔案內容
2.open()第二個引數為檔案的讀寫模式,詳情請檢視python基礎教程
方法二:
file2 = open("test2.txt","w")
file2.write("hello2")
file2.close()
注釋:
此方法使用時不要忘了在最後加上file2.close()
close函式作用是關閉檔案,防止記憶體溢位
python操作text檔案 讀取 寫入 清空
text的儲存格式為每一行的字串儲存 text檔案的寫入 data 尊敬的領導 n t您好,可以通過轉義字元實現換行 縮排 with open r test.txt mode w encoding utf8 as tf tf.write data 迭 入 list2 尊敬的領導 n t您好 n 必須...
Linux檔案寫入操作
上一講寫到linux環境下檔案的建立,這講承上啟下 先看 include include include include include include intmain printf open success fd d n fd write fd,buf,strlen buf close fd re...
python檔案的寫入
wirte 方法把字串寫入檔案,writelines 方法可以把列表中儲存的內容寫入檔案。f file hello.txt w li hello world n hello china n f.writelines li f.close 檔案的內容 hello world hello china w...