I am trying to open a file with python where the filename is 2018_01_25_(filename).csv.
In batch files i used C:*.csv to open the csv file. I have tried this in python 2.7 but it doesnt work.
a = pd.read_csv("filename.csv") i want to use, a = pd.read_csv("*.csv") Is there a python equivalent to this?