Python debugging commands:
Status: Planning
Brought to you by:
vidarg
Thank you for creating this! This is a super-awesome learning tool!
Here are some additions which I'll keep providing if you want me to:
"Most recent evaluated expression" in Python is done with _ (underscore)
"List variables loaded into memory" in Python is done with vars()
"Clear variable $x$ from memory" in Python is done with del(x)
and I would also add a line about "Get type of variable $x$" - in Matlab it is done with class(x) and in Python it is done with type(x)
Thank you,
Alexey