1. 程式人生 > >python檔案遍歷

python檔案遍歷

#遍歷儲存檔案
def text_save(filename, product): # filename為寫入檔案的路徑,product為要寫入資料列表.
file = open(filename, 'a') # 開啟或者建立檔案
for i in range(len(product)): # 遍歷檔案
s = str(product[i]).replace('[', '').replace(']', '') # 去除[],這兩行按資料不同,可以選擇
s = s.replace("'", '').replace(',', '') + '\n' # 去除單引號,逗號,每行末尾追加換行符
file.write(s) # 寫入檔案
file.close() # 關閉檔案
print("儲存檔案成功")

#儲存檔案
fsock = open("d:/test.txt", "a")
fsock.write(product+'\n')
fsock.close()