1

可能的重复:
对附加到文本文件感到困惑
如何使用“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()

此代码将文本添加到文本文件中,但不准确我怎样才能准确地做到这一点?

4

0 回答 0