On 04/22/2010 12:33 PM, eric948470 wrote:
If I declare some variables, and after completing the calculation I
don't want them to be variables anymore, how do I make them not
variables anymore?



You can just delete them (as with any python object):

sage: var('y')
y
sage: y
y
sage: del y
sage: y
---------------------------------------------------------------------------
NameError                                 Traceback (most recent call last)

/home/jason/calc3/07 - Optimization/<ipython console> in <module>()

NameError: name 'y' is not defined


Thanks,

Jason

--
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to 
[email protected]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URL: http://www.sagemath.org

Reply via email to