jupyter list all variables in the notebook code example
Example 1: jupyter find variables
In [3]: whos
Variable Type Data/Info
----------------------------
foo str bar
Example 2: how to get a list of all variables in memory python
# Use the magic function %who to show all local user defined variables
%who
# Use %whos to show details
%whos