Как отображать CSV в пандах

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

print(df.to_string())
Annoyed Alpaca