how to see variables in python code example
Example 1: python variables
var = 640
number = 604
tr = 623
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