简体   繁体   中英

How to open an excel file with multiple sheets in pandas?

I have an excel file composed of several sheets. I need to load them as separate dataframes individually. What would be a similar function as pd.read_csv("") for this kind of task?

PS due to the size I cannot copy and paste individual sheets in excel

Use pandas read_excel() method that accepts a sheetname parameter:

import pandas as pd

df = pd.read_excel(excel_file_path, sheetname="sheet_name")

For more in-depth explanation of how read_excel() works see http://pandas.pydata.org/pandas-docs/stable/generated/pandas.read_excel.html

import pandas
# setting sheet_name = None, reads all sheets into a dict
sheets = pandas.read_excel(filepath, sheet_name=None)  
# i will be the keys in a dictionary object
# the values are the dataframes of each sheet
for i in sheets: 
    print(f"sheet[{i}]")
    print(f"sheet[{i}].columns={sheets[i].columns}")
    for index, row in sheets[i].iterrows():
        print(f"index={index} row={row}")

exFile = ExcelFile(f) #load file f

data = ExcelFile.parse(exFile) #this creates a dataframe out of the first sheet in file

If you can't type out each sheet name and want to read whole worksheet try this:

                dfname=pd.ExcelFile('C://full_path.xlsx')
                print(dfname.sheet_names)
                df=pd.read_excel('C://fullpath.xlsx')
                for items in dfname.sheet_names[1:]:
                    dfnew=pd.read_excel(full_path,sheet_name=items)
                    df=pd.concat([df,dfnew])

The thing is that pd.read_excel() can read the very first sheet and rest are unread.So you can use this

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM