2017-04-11 4 views

Antwort

2
pd.concat({f[:-4]: pd.read_csv(f, header=None) for f in glob('file*.csv')}) 

     0 1 
file1 0 0 1 
     1 2 3 
file2 0 4 5 
file3 0 6 7 
     1 8 9 
Verwandte Themen