I've got more than 200 files in .csv and I'd like to read and compute two of them in the same time (current and the next one). I'm trying to use glob and pandas data frames
import glob
for file in glob.glob(path+'*.csv'):
x1 = pd.read_csv(file, delimiter=',', dtype=None, names=('x', 'y'))
x2 = pd.read_csv(file + 1 , delimiter=',', dtype=None, names=('x', 'y'))
I've got no other ideas.