Viewing variables in memory
Does Sage provide any way to see which variables and user-defined functions are currently in memory, like the ls() command in R?
Does Sage provide any way to see which variables and user-defined functions are currently in memory, like the ls() command in R?
sage: a,b,c,d = var('a,b,c,d')
sage: who
a b c d
sage: whos
Variable Type Data/Info
----------------------------------
a Expression a
b Expression b
c Expression c
d Expression d
Is it what you want?
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2013-11-15 03:06:23 +0100
Seen: 828 times
Last updated: Nov 15 '13
Notebook List Object Data Storage/Retrieval? (Start/Restart)
Short Cython Example In A Notebook Cell?
What happens in insecure mode?
Is notebook() mutually-exclusive from "./sage -gdb" mode?
Can I pause a computation rather than aborting it? (Interrupt Command)
What state is preserved when I close a running notebook browser window?