Imprimer toutes les variables Jupyter Notebook

dir() #will give you the list of in scope variables:
globals() #will give you a dictionary of global variables
locals() #will give you a dictionary of local variables
Real Raccoon