Распечатайте все переменные Jupyter Notebbook

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