Jak wyświetlać CSV w pandy

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

print(df.to_string())
Annoyed Alpaca