Python pandy jak ładować plik CSV

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