0

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.

bad_coder
  • 11,289
  • 20
  • 44
  • 72
Dionlw
  • 33
  • 5

1 Answers1

0

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)
Matthew Borish
  • 3,016
  • 2
  • 13
  • 25