Python public recipes
Open a file using the open
function and then reads it line by line until the end of the file
Shortcut: file.read.lines
with open(filename, mode="r", encoding="utf-8") as file_handler:
lines = file_handler.readlines()
for line in lines:
print(line)