-
[Python] Difference between readline and readlines. (readline과 readlines의 차이)Python/Python Programming 2019. 10. 8. 11:11
readline : 파일을 한줄씩 읽는다.
readlines : 파일을 한번에 읽어 리스트로 반환. (\n 개행문자포함) - liste type return contain '\n'
samplefile :
python
is
beautifulreadline으로 읽어 들였을 때,
file = open('example_file.txt', 'r', encoding='utf-8') print(file.readline()) file.close() ------------------------------------------------------- python
* 끝까지 읽고 싶을 때는, while 반복문을 이용한다. (print all)
with open('samplefile.txt', 'r', encoding='utf-8') as file: while True: line = file.readline() if not line: break print(line, end='') ------------------------------------------------------ python is beautiful
readlines으로 읽어 들였을 때,
file = open('example_file.txt', 'r', encoding='utf-8') print(file.readlines()) file.close() ------------------------------------------------------- ['python\n', 'is\n', 'beautiful']
'Python > Python Programming' 카테고리의 다른 글
[Python] isalpha 문자열에 문자만 있는지 확인하는 메소드 (0) 2019.10.11 [Python] multiplication table (파이썬 구구단) (0) 2019.10.10 [Python] multiplication table using itertools module. (itertools을 이용한 구구단) (0) 2019.10.10 [Python] comparing a file and b file (파일 비교 하기) (0) 2019.10.10 [Python] iglob메소드와 재귀를 이용한 모든 하위 디렉토리 특정 확장자 파일 검색 (0) 2019.10.06 [Python] 리스트 append 메소드와 insert 메소드 (0) 2019.10.02 [Python] 리스트의 값을 여러 변수에 다중할당 (0) 2019.10.02 [Python] itertools을 이용한 곱집합 만들기 (0) 2019.09.27