I am trying to read multiple excel files in a loop using read_excel :
Different excel files contain sheet names which contain the word "staff" eg Staff_2013 , Staff_list etc
Is there a way to read all these files dynamically using some wild card concept ?
Something like the code below :
df = pd.read_excel(folder,col_names=True,sheet_name='Staff*')