| 1 | initial version |
You can use reset():
sage: a = 3
sage: a
3
sage: reset()
sage: a
---------------------------------------------------------------------------
NameError Traceback (most recent call last)
[...]
NameError: name 'a' is not defined
You can also give variable names, like reset("a b c") and so on. Type reset? at the console for the details.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.