I am using pandas and I am trying to read an excel file with multiple sheets.
pd.read_excel('PATH', sheet_name=)
I only want to read the sheets with the following pattern: An nnnn, where n is a digit number.
Additionally this file will be updated in the future, so writing the sheetnames one by one is not a good option.
Is it possible, and if yes, how to read multiple excel sheets with the pattern name I described?