C-3-Framework icon indicating copy to clipboard operation
C-3-Framework copied to clipboard

[Errno 20] Not a directory:

Open sanakousar00 opened this issue 4 years ago • 0 comments

import pandas as pd frames = []

for i in flower_labels: data_path = path +'/'+ str(i) print(data_path) filenames = [i for i in os.listdir(data_path) if i.endswith('.csv')] df = pd.read_csv(data_path+'/'+filenames[0]) frames.append(df)

sanakousar00 avatar May 04 '20 16:05 sanakousar00