■ DataFrame 클래스의 to_excel 메소드를 사용해 엑셀 파일을 생성하는 방법을 보여준다.
▶ main.py
1 2 3 4 5 6 7 |
import pandas as pd dataFrame = pd.read_table("tips.csv", sep = ",", header = [0]) dataFrame.to_excel("tips.xlsx") |
▶ requirements.txt
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
defusedxml==0.7.1 et_xmlfile==2.0.0 numpy==2.1.3 odfpy==1.4.1 openpyxl==3.1.5 pandas==2.2.3 python-calamine==0.2.3 python-dateutil==2.9.0.post0 pytz==2024.2 pyxlsb==1.0.10 six==1.16.0 tzdata==2024.2 xlrd==2.0.1 XlsxWriter==3.2.0 |
※ pip install "pandas[excel]" 명령을 실행했다.