읽기 기능은 전체 파일을 한 번에 읽습니다. readlines 함수를 사용하여 파일을 한 줄씩 읽을 수 있습니다.
예
다음을 사용하여 파일을 한 줄씩 읽을 수 있습니다.
f = open('my_file.txt', 'r+') for line in f.readlines(): print line f.close()
with...open 문을 사용하여 파일을 열고 한 줄씩 읽을 수도 있습니다.
예를 들어
with open('my_file.txt', 'r+') as f: for line in f.readlines(): print line
https://www.codespeedy.com/read-a-specific-line-from-a-text-file-in-python/