Pandas Afficher les lignes Config

import pandas as pd
#change default rows to show (default = 15)
pd.options.display.max_rows = 100 # number of rows to show
Mimisaurio