I want to open multiple csv files with for loop.
For example, the file names are 0.csv 1.csv 2.csv ... 80.csv
and i want to read those files in python with df0 df1 df2 ... df80
what i have tried was
for i in range(0,81):
df+"{0}".format(i)= pd.read_csv("C:/Users/{0}.csv".format(i), engine='python')
i am quite confident about using {0} inside the file address. but i am not sure what to use to make file names df0, df1, df2
please help! if {0} use inside the address is also wrong please correct.