def print_full(df): ''' print all rows of pd.DataFrame ''' pd.set_option('display.max_rows', len(df)) print('\n') print(df) pd.reset_option('display.max_rows') # TODO: