Python でテキスト ファイルに文字列を書き込む
Python では、TotalAmount などの文字列変数の値をテキストドキュメント。その方法は次のとおりです:
コンテキスト マネージャーを使用すると、ファイルが常に閉じられるようになります:
with open("Output.txt", "w") as text_file: text_file.write("Purchase Amount: %s" % TotalAmount)
Python2.6 以降を使用している場合は、str.format():
with open("Output.txt", "w") as text_file: text_file.write("Purchase Amount: {0}".format(TotalAmount))
with open("Output.txt", "w") as text_file: text_file.write("Purchase Amount: {}".format(TotalAmount))
with open("Output.txt", "w") as text_file: print("Purchase Amount: {}".format(TotalAmount), file=text_file)
以上がPython でテキスト ファイルに文字列を書き込むにはどうすればよいですか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。