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?
Asked: 2013-11-14 20:06:23 -0600
Seen: 161 times
Last updated: Nov 14 '13