私は以下のコードを持っています。私は、ファイルの最後にコードにプリントを保存するコードを作ろうとしています。これのどの部分が欠けていますか?ファイルに印刷しますか?
import itertools
#Open test.txt
file = open('test.txt', 'a')
res = itertools.product('abcdef', repeat=3) # 3 is the length of your result.
for i in res:
print ''.join(i)
:あなたが好きな何かを行うことができますhere
を読むことができます
with
の詳細については。 –
Python 2では、 'print'が文の場合、' print '' .join(i)>> file'を使用して出力をオープンファイルにする必要があります。 Python 3では、関数 'print( ''。join(i)、file = file)'を使います。 – martineau