text_file = open("Output.txt", "w")
text_file.write("Purchase Amount: %s" % TotalAmount)
text_file.close()
Bir bağlam yöneticisi kullanıyorsanız, dosya sizin için otomatik olarak kapatılır
with open("Output.txt", "w") as text_file:
text_file.write("Purchase Amount: %s" % TotalAmount)
Python2.6 veya üstünü kullanıyorsanız, str.format()
with open("Output.txt", "w") as text_file:
text_file.write("Purchase Amount: {0}".format(TotalAmount))
Python2.7 ve sonraki sürümler {}
için{0}
Python3 olarak, isteğe bağlı bir orada file
parametre print
işlevi
with open("Output.txt", "w") as text_file:
print("Purchase Amount: {}".format(TotalAmount), file=text_file)
Python3.6 başka bir alternatif için f-stringleri tanıttı
with open("Output.txt", "w") as text_file:
print(f"Purchase Amount: {TotalAmount}", file=text_file)