5 lines
No EOL
103 B
Python
5 lines
No EOL
103 B
Python
# https://www.w3schools.com/python/python_file_open.asp
|
|
|
|
f = open("demofile.txt", "r")
|
|
|
|
print(f.read()) |