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