Answers for "how to save excel file as xlsx in python"

1

export_excel file python

df.to_excel(r'Path where you want to store the exported excel fileFile Name.xlsx', index = False)
Posted by: Guest on April-04-2020
0

save to xlsx in python

import pandas as pd
df = pd.read_excel()

>>> df
      User Name Country      City Gender  Age
0  Forrest Gump     USA  New York      M   50
1     Mary Jane  CANADA   Tornoto      F   30
2  Harry Porter      UK    London      M   20
3     Jean Grey   CHINA  Shanghai      F   30


df.to_excel('saved_file.xlsx')
Posted by: Guest on November-06-2021

Code answers related to "how to save excel file as xlsx in python"

Python Answers by Framework

Browse Popular Code Answers by Language