[Python] linecache module
Python으로 자동화를 진행하던 중 linecache라는 module이 있다는 것을 알게 되었다. linecache는 파일을 열어서 특정 줄에 빠르게 access 할 수 있다. https://github.com/python/cpython/blob/main/Lib/linecache.py GitHub - python/cpython: The Python programming language The Python programming language. Contribute to python/cpython development by creating an account on GitHub. github.com 메뉴얼에는 한줄만 가져오는 linecache.getline(filename,linenumber) 메소드만 나와..
2021.11.01