1. 程式人生 > >python的list變數儲存為txt文字

python的list變數儲存為txt文字

python的一些中間變數,如list變數儲存為txt檔案:

file = open('file_name.txt','w');

file.write(str(list_variable));

file.close();