Importez tout le CSV en tant que Dataframes Python individuels
# Needed packages
import glob
import pandas as pd
# Import all csv files
files = glob.glob("Path/*.csv")
# Import them as individual Dataframe
count = 0
for f in files:
count += 1
exec(f'df_{count} =pd.read_csv(f)')
print(f'DataFrame: df_{count}')
Gabriel Juri