readline() : 한줄씩 읽고 반환한다
readlines() : 파일에 있는 모든 문자열 리스트를 반환한다.
text.txt 라는 파일에 다음과 같이 기록되어 있다고 가정해보자.
hi nice to meet you thanks |
그리고 다음의 각각 1,2 상황일 어떤 출력값이 나올까.
file= open('test.txt',"r")
print file.readline()
1. 출력값 : hi
print file.readline()
2. 출력값 : ['hi\n', 'nice to meet you\n', 'thanks']