text_file = open("Output.txt", "w")
text_file.write("Purchase Amount: %s" % TotalAmount)
text_file.close()
यदि आप एक संदर्भ प्रबंधक का उपयोग करते हैं, तो फ़ाइल आपके लिए स्वचालित रूप से बंद हो जाती है
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}
पायथन 3 में, फ़ंक्शन के file
लिए एक वैकल्पिक पैरामीटर हैprint
with open("Output.txt", "w") as text_file:
print("Purchase Amount: {}".format(TotalAmount), file=text_file)
Python3.6 ने एक और विकल्प के लिए एफ-स्ट्रिंग्स की शुरुआत की
with open("Output.txt", "w") as text_file:
print(f"Purchase Amount: {TotalAmount}", file=text_file)