创建文本文档(Python)

时间:2012-02-14 21:36:01

标签: python text save

假设我想用用户输入的代码创建一个名为spam.txt的文档。假设我有用户输入,请说:

input("Is Python Good? ")

如何将用户输入的文本保存到文本文件中,并且可以执行此操作?

2 个答案:

答案 0 :(得分:35)

f = open('file.txt','w')
a = input('is python good?')
f.write('answer:'+str(a))
f.close()

容易没有? :)

答案 1 :(得分:18)

with open('spam.txt', 'a') as f:
    f.write(string_output)