Terry Very Good

[Python] 데이터프레임을 xlsx파일로 변환해서 저장하는 법(df.to_excel()) 본문

프로그래밍/PYTHON

[Python] 데이터프레임을 xlsx파일로 변환해서 저장하는 법(df.to_excel())

테리베리 2021. 10. 1. 16:39
728x90
반응형

df.to_excel() : 데이터프레임을 엑셀파일로 저장해준다. 

learning_dataframe이라는 데이터프레임을 learning_data.xlsx 파일로 저장해준다.

learning_dataframe.to_excel('learning_data.xlsx')

 

 

728x90
반응형