Comment afficher le CSV en pandas

df = pd.read_csv('data.csv')

print(df.to_string())
Annoyed Alpaca