“Comment formater un fichier dans Python” Réponses codées

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

Comment formater un fichier dans Python

f = open('file.txt', 'r')
for x in f:
    x = x.lstrip()
    x = x.rstrip()
    x = x.title()
    print x
Clever Crab

Réponses similaires à “Comment formater un fichier dans Python”

Questions similaires à “Comment formater un fichier dans Python”

Plus de réponses similaires à “Comment formater un fichier dans Python” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code