“Impor semua Python CSV” Kode Jawaban

Impor semua Python CSV

# Needed packages
import glob
import pandas as pd

# Import all csv files
files = glob.glob("Path/*.csv")

# Concatenate them into one Dataframe

df = pd.DataFrame()
for f in files:
    csv = pd.read_csv(f)
    df = df.append(csv)
    print(df)
Gabriel Juri

Impor semua Python CSV

# 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

Jawaban yang mirip dengan “Impor semua Python CSV”

Pertanyaan yang mirip dengan “Impor semua Python CSV”

Lebih banyak jawaban terkait untuk “Impor semua Python CSV” di Python

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya