“Écrire une chaîne pour fichier python” Réponses codées

Écrire une chaîne pour fichier python

price = 33.3
with open("Output.txt", "w") as text_file:
    text_file.write("Purchase Amount: %s price %f" % (TotalAmount, price))
Black Buffalo

avec ouvert comme fichier python

>>> with open('workfile') as f:
...     read_data = f.read()

>>> # We can check that the file has been automatically closed.
>>> f.closed
True
Powerful Platypus

Réponses similaires à “Écrire une chaîne pour fichier python”

Questions similaires à “Écrire une chaîne pour fichier python”

Plus de réponses similaires à “Écrire une chaîne pour fichier python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code