12 lines
80 B
Python
12 lines
80 B
Python
|
fichier = open("lorem_ipsum.txt")
|
||
|
|
||
|
print(fichier.read())
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
fichier.close()
|