programming-examples/python/Algorithms/read_file.py
2019-11-15 12:59:38 +01:00

5 lines
77 B
Python

file = open("input.txt", "r")
for line in file:
print(line)
file.close()