Cours_Python/1exo1.py

12 lines
80 B
Python
Raw Normal View History

2020-06-12 23:24:11 +02:00
fichier = open("lorem_ipsum.txt")
print(fichier.read())
fichier.close()