'How would I display all rows in a CSV in pycharm? [duplicate]

So far I have

import pandas as pd
data = pd.read_csv(r"C:\Users\Username\Desktop\Serial.csv")
print(data)

I have tried

pd.set_option('display.max_rows', see.shape[0]+1)

and it still only displays a few rows.



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source