📜  df to excel - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:25.196000             🧑  作者: Mango

代码示例2
#Python, pandas
#To export a pandas dataframe into Excel

df.to_excel(r'Path where you want to store the exported excel file\File Name.xlsx', index = False)