在 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))
在 Python2.7 及更高版本中,使用 {0} 或{}:
with open("Output.txt", "w") as text_file: text_file.write("Purchase Amount: {}".format(TotalAmount))
在 Python3 中,在 print() 中使用可选文件参数:
with open("Output.txt", "w") as text_file: print("Purchase Amount: {}".format(TotalAmount), file=text_file)
或者,在 Python3.6 中使用 f 字符串:
with open("Output.txt", "w") as text_file: print(f"Purchase Amount: {TotalAmount}", file=text_file)
以上是如何在 Python 中将字符串写入文本文件?的详细内容。更多信息请关注PHP中文网其他相关文章!