In a directory, I have around 100 files- csv datas. How to import them to python? I searched and I found:
import csv
f = open("imgdata.csv")
r = csv.reader(f)
f.close()
but it is not working for a directory. It's not about looking for the files, it's about importing them.