with open(filename, mode="r", encoding="utf-8") as file_handler:
lines = file_handler.readlines()
for line in lines:
print(line)
read file line by line
Open a file using the open
function and then reads it line by line until the end of the file
Shortcut: file.read.lines
0 Comments
Add Comment
Log in to add a comment