text_file = open("Output.txt", "w")
text_file.write("Purchase Amount: %s" % TotalAmount)
text_file.close()
Si vous utilisez un gestionnaire de contexte, le fichier est fermé automatiquement pour vous
with open("Output.txt", "w") as text_file:
text_file.write("Purchase Amount: %s" % TotalAmount)
Si vous utilisez Python2.6 ou supérieur, il est préférable d'utiliser str.format()
with open("Output.txt", "w") as text_file:
text_file.write("Purchase Amount: {0}".format(TotalAmount))
Pour python2.7 et supérieur, vous pouvez utiliser {}
au lieu de{0}
En Python3, il y a un file
paramètre facultatif à la print
fonction
with open("Output.txt", "w") as text_file:
print("Purchase Amount: {}".format(TotalAmount), file=text_file)
Python3.6 a introduit des chaînes f pour une autre alternative
with open("Output.txt", "w") as text_file:
print(f"Purchase Amount: {TotalAmount}", file=text_file)