How can I print all the rows in the series generated?
isDateGreater = newDF.Effective_Date > newDF.Paid_Off_Time
print("the size of isDateGreater " + str(isDateGreater))
the size of isDateGreater 0 False
1 False
2 False
3 False
4 False
481 False
482 False
483 False
484 False
485 False
Length: 486, dtype: bool
Effective_Date Paid_Off_Time
08/09/2016 25/09/2016
28/09/2016 29/09/2016
18/09/2016 1/09/2016
10/09/2016 5/09/2016
EDIT Issue If there are 10 000 rows in the data set, when I print out, I want to print ALL 10.000 rows, currently with the code above it prints only 9 rows.