0
所以我想要做的是將這個程序的輸出保存到一個文本文件。如何將輸出保存到Python中的文本文件中?
import itertools
res = itertools.product('qwertyuiopasdfghjklzxcvbnm', repeat=3)
for i in res:
print ''.join(i)
進出口運行的Python 2.7
所以我想要做的是將這個程序的輸出保存到一個文本文件。如何將輸出保存到Python中的文本文件中?
import itertools
res = itertools.product('qwertyuiopasdfghjklzxcvbnm', repeat=3)
for i in res:
print ''.join(i)
進出口運行的Python 2.7
您可以使用open
,然後將生成的文件處理程序的write
方法。
import itertools
res = itertools.product('qwertyuiopasdfghjklzxcvbnm', repeat=3)
with open('output.txt', 'w') as f:
for group in res:
word = ''.join(group)
f.write(word+'\n')
print(word)
感謝它的工作。 –