“python écrivez dans le fichier texte avec une nouvelle ligne” Réponses codées

python écrivez dans le fichier texte avec une nouvelle ligne

# This will open a new file called myFile.txt and 
# write 0 - 4 using a loop, each on a new line.
# Note the "\n" part!

with open("myFile.txt", "w") as file:
  for i in range(0,5):
    file.write(str(i) + "\n")

# We do not need to use "file.close()" because 
# we used "with open(...)" which is considered 
# to be more "pythonic"
CoderHomie

Python Écrivez le fichier texte sur la ligne suivante

file = open("sample.txt", "w")
file.write("Hello\n")
file.write("World\n")
file.close()
Unusual Unicorn

Réponses similaires à “python écrivez dans le fichier texte avec une nouvelle ligne”

Questions similaires à “python écrivez dans le fichier texte avec une nouvelle ligne”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code