I have a list which contains multiple filename:
example_list = ['2021-08-09_01.csv', '2021-08-09_02.csv', '2021-08-10_12.csv',
'2021-08-10_03.csv']
I want to return a new list which includes the days that are inside the example_list
:
new_list = ['09','10']
Regardless the number after the day string, what's the easiest way to achieve this?