how to get a list of all variables in memory python

Solutions on MaxInterview for how to get a list of all variables in memory python by the best coders in the world

showing results for - "how to get a list of all variables in memory python"
Hugo
28 Mar 2018
1# Use the magic function %who to show all local user defined variables
2%who
3# Use %whos to show details
4%whos