how to show all the data in dataframe code example
Example 1: print all of dataframe
print(df.to_string())
Example 2: pandas show all dataframe
with pd.option_context('display.max_rows', None, 'display.max_columns', None): # more options can be specified also
print(df)