“Écrivez pour fichier python 3” Réponses codées

Écrivez pour fichier python 3

with open(filename, 'a') as out:
    out.write(var + '\n')
Expensive Earthworm

Écrivez pour fichier python 3

with open(filename, 'a') as f:
    print(var, file=f)
Expensive Earthworm

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 à “Écrivez pour fichier python 3”

Questions similaires à “Écrivez pour fichier python 3”

Plus de réponses similaires à “Écrivez pour fichier python 3” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code