class
txtwr
:def
__init__
(self, path)
: self.path = path
defwrite
(self, mlist)
:# 寫之前,先檢驗檔案是否存在,存在就刪掉
if os.path.exists(self.path)
: os.remove(self.path)
# 以寫的方式開啟檔案,如果檔案不存在,就會自動建立
file_w_obj =
open
(self.path,
'w')
for item in mlist:
file_w_obj.writelines(item)
file_w_obj.write(
'\n'
) file_w_obj.close(
)def
read
(self)
:# 以讀寫的方式開啟檔案,如果檔案不存在,就會自動建立
file_wr_obj =
open
(self.path,
'r')
# 讀取txt檔案的所有行到list
all_lines = file_wr_obj.readlines(
)return all_lines
defowrite
(self, mlist)
:# 寫之前,先檢驗檔案是否存在,存在就刪掉
if os.path.exists(self.path)
: os.remove(self.path)
file_w_obj =
open
(self.path,
'w')
for item in mlist:
file_w_obj.writelines(item)
file_w_obj.close(
)
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檔案
最近,我在嘗試用python製作乙個簡單的桌面軟體,但其中遇見幾個小問題想給大家分享一下 一般檔案讀寫都是這樣的 讀取 f open test.txt r txt f.read f.close 寫入with open test.txt w as f f.write nothing f.close那,...