Answers for "working with xlsx files in python"

7

python how to read a xlsx file

import pandas as pd

df = pd.read_excel (r'Path where the Excel file is storedFile name.xlsx')
print (df)
Posted by: Guest on August-14-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 "working with xlsx files in python"

Python Answers by Framework

Browse Popular Code Answers by Language