我有一個python列表['a','b','c']
,它是在for循環中生成的。我想將列表中的每個元素寫入一個新文件。以編程方式將列表的內容寫入目錄
我曾嘗試:
counter = 0
for i in python_list:
outfile = open('/outdirectory/%s.txt') % str(counter)
outfile.write(i)
outfile.close()
counter += 1
我得到一個錯誤:
IOError: [Erno 2] No suchfile or directory.
如何通過編程方式創建和寫入文件在for循環?
是否目錄'/ outdirectory'存在? – moooeeeep 2014-10-09 17:21:26