重複の可能性:テキストファイルへの追加と混同される「while」を使用し
てテキストファイルに書き込むにはどうすればよいですか?
text_file = open("write_it.txt", "a")
while 1:
word = raw_input("Please add to a text file: ")
if not word:
break
text_file.write(word)
text_file.close()
このコードはテキストファイルにテキストを追加しますが、正確に作成するにはどうすればよいですか?