pip install pandas openpyxl
.import pandas as pd
.df = pd.read_excel('filename.xlsx')
to load the Excel file into a DataFrame.sheet_name='Sheet1'
parameter.sheet_name=None
.df.head()
to see the first few rows and df.describe()
for summary statistics.