web-dev-qa-db-ja.com

テキストドキュメントの作成(Python)

spam.txtと呼ばれるユーザー入力コードからドキュメントを作成したいとしましょう。ユーザー入力があると仮定して、次のように言います:

input("Is Python Good? ")

ユーザーが入力したテキストをテキストファイルに保存するにはどうすればよいですか?

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

簡単? :)

36
ingframin
with open('spam.txt', 'a') as f:
    f.write(string_output)
18
Fred