I have an Excel files with multiple sheets named: a,b,c,d,e.....,z I can read sheet a using following code
xl=pd.ExcelFile(r'path.xlsx')
a=xl.parse('a')
How can I assign the names of sheets:a,b,c...,z as dataframe names so that I can easily call it later