Python Pandas Cara Memuat File CSV

import pandas as pd
df = pd.read_csv("file path.csv")
Yair Mizrachi