python pandas save df to xlsx file
import pandas as pd
# Save Dataframe df to output.xlsx in current directory with sheet_name_1
df.to_excel("output.xlsx", sheet_name='Sheet_name_1')
python pandas save df to xlsx file
import pandas as pd
# Save Dataframe df to output.xlsx in current directory with sheet_name_1
df.to_excel("output.xlsx", sheet_name='Sheet_name_1')
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')
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us