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
  • 8,684
  • 19
  • 37
  • 59
Dionlw
  • 13
  • 4

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
  • 2,796
  • 2
  • 11
  • 23