파일 읽기
-
[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 beautiful readline으로 읽어 들였을 때, file = open('example_file.txt', 'r', encoding='utf-8') print(file.readline()) file.close() ------------------------------------------------------- python * 끝까지 읽고 싶을 때는, while 반복문을 이용한다. (print all) with open('samplefile.txt', 'r', encoding='u..