Python에서 Excel 파일 읽기
프로그램을 하다보면 외부 데이터를 읽어서 동작하게 하는 작업을 많이 합니다. Excel 파일을 읽어서 출력하는 걸 한번 해보겠습니다. 우선 Python에서 Excel 파일을 다루기 위해 openpyxl라는 외부 라이브러리를 사용하겠습니다. https://openpyxl.readthedocs.io/en/stable/index.html openpyxl - A Python library to read/write Excel 2010 xlsx/xlsm files — openpyxl 3.0.10 documentation Install openpyxl using pip. It is advisable to do this in a Python virtualenv without system packages: Warning..
2022.09.23