text_file = open("Output.txt", "w")
text_file.write("Purchase Amount: %s" % TotalAmount)
text_file.close()
Nếu bạn sử dụng trình quản lý ngữ cảnh, tệp sẽ tự động bị đóng
with open("Output.txt", "w") as text_file:
text_file.write("Purchase Amount: %s" % TotalAmount)
Nếu bạn đang sử dụng Python2.6 trở lên, bạn nên sử dụng str.format()
with open("Output.txt", "w") as text_file:
text_file.write("Purchase Amount: {0}".format(TotalAmount))
Đối với python2.7 trở lên, bạn có thể sử dụng {}
thay vì{0}
Trong Python3, có một file
tham số tùy chọn cho print
hàm
with open("Output.txt", "w") as text_file:
print("Purchase Amount: {}".format(TotalAmount), file=text_file)
Python3.6 đã giới thiệu chuỗi f cho một lựa chọn khác
with open("Output.txt", "w") as text_file:
print(f"Purchase Amount: {TotalAmount}", file=text_file)