首頁 > 後端開發 > Python教學 > 如何在 Python 中將字串寫入文字檔案?

如何在 Python 中將字串寫入文字檔案?

Susan Sarandon
發布: 2024-12-14 19:05:11
原創
588 人瀏覽過

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

來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板