I have some .csv files that I read into my code that could have a number of different names.
ex.
17159_output.csv 18001_output.csv
I read it in with pandas
d = pd.read_csv('17159_output.csv')
How can I write it so that it is something like %%%%%_output.csv
d = pd.read_csv('%%%%%_output.csv')
%%%%% will always be 5 digits