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.
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.
This works for me in PyCharm.
import pandas as pd
df = pd.DataFrame({'x':list(range(500))})
pd.set_option('display.max_rows', df.shape[0])
print(df)