Python File IOos.path 대용from pathlib import Path path = Path(parent) full = parent / child # Do not need joinPython pathlib UsagePython pathlib openPython pathlib readlinePython pathlib readPython pathlib readlinesPython pathlib writePython pathlib write_byte pathlib — Object-oriented filesystem pathsSource code: Lib/pathlib.py This module offers classes representing filesystem paths with semantics appropriate for different operating systems. Path classes are divided between pure paths, which p...https://docs.python.org/3/library/pathlib.html2. 파일 읽기, .read() 메소드파일을 읽어오기 위한 메소드는 read(), readline(), readlines() 가 있다. 세개의 동작방식은 다음과 같다. read() : 파일 전체의 내용을 하…https://wikidocs.net/14130