--- tags: - python --- An easy and efficient way to read a file line-by-line is by simple using the file object as the iterable. ``` for line in file: print(line) ```