def print_full(x): """Print all rows in Pandas DataFrame x.""" pd.set_option('display.max_rows', len(x)) print(x) pd.reset_option('display.max_rows')