■ TextIOWrapper 클래스의 readlines 메소드를 사용해 텍스트 파일을 읽는 방법을 보여준다.
▶ 예제 코드 (PY)
1 2 3 4 5 6 7 8 9 10 |
textIOWrapper = open("d:/test.txt", "r", encoding = "utf-8") lineList = textIOWrapper.readlines() for line in lineList: print(line.lstrip().rstrip()) textIOWrapper.close() |