df = pd.read_excel('Path.xlsx', sheet_name='Desired Sheet Name')
import pandas as pd
df = pd.read_excel (r'Path where the Excel file is storedFile name.xlsx')
print (df)
import os
from pathlib import Path
# opening EXCEL through Code
#local path in dir
absolutePath = Path('../excel.xlsx').resolve()
os.system(f'start excel.exe "{absolutePath}"')
#My excel file is in the same location as my
EXCEL_FILE = 'Demo_excelsheet.xlsx'
df = pd.read_excel(EXCEL_FILE)