Communities for your favorite technologies. Explore all Collectives
Stack Overflow for Teams is now called Stack Internal. Bring the best of human thought and AI automation together at your work.
Bring the best of human thought and AI automation together at your work. Learn more
Find centralized, trusted content and collaborate around the technologies you use most.
Stack Internal
Knowledge at work
Bring the best of human thought and AI automation together at your work.
Import two or more csv'sCSV files without having to make a list of names.
csv
import glob import pandas as pd df = pd.concat(map(pd.read_csv, glob.glob('data/*.csv')))
Import two or more csv's without having to make a list of names.
Import two or more CSV files without having to make a list of names.
import glob df = pd.concat(map(pd.read_csv, glob.glob('data/*.csv')))
#Easy and Fast Import 2Import two or more csv's without having to make a list of names.
#Easy and Fast Import 2 or more csv's without having to make a list of names.
import glob df = pd.concat(map(pd.read_csv, glob.glob('data/*.csv'))