首页 >后端开发 >Python教程 >如何在 Python 中将字符串写入文本文件?

如何在 Python 中将字符串写入文本文件?

Susan Sarandon
Susan Sarandon原创
2024-12-14 19:05:11590浏览

How Can I Write Strings to Text Files in Python?

在 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn