將我的打印輸出寫入文件時出現問題。將打印輸出寫入文件(python)
我的代碼:
list1 = [2,3]
list2 = [4,5]
list3 = [6,7]
for (a, b, c) in zip(list1, list2, list3):
print a,b,c
輸出我得到的是:
>>>
2 4 6
3 5 7
>>>
,但我有保存此輸出的問題,我想:
fileName = open('name.txt','w')
for (a, b, c) in zip(list1, list2, list3):
fileName.write(a,b,c)
和各種組合像fileName.write(a + b + c)或(abc),但我不成功...
乾杯!
謝謝,這似乎工作!我只需要弄清楚如何添加行間的空格,任何提示? – kate88 2013-04-24 12:02:23
瞭解它:fileName.write('{} {} {} \ n'.format(* t),歡呼! – kate88 2013-04-24 12:07:18