On Fri, Sep 19, 2008 at 6:47 AM, Bob Wonderly <[EMAIL PROTECTED]> wrote:
>
> After being a few hours into a Sage session I start losing track of all
> the vars I have defined. Is there a way to get Sage to list them for me?
>
> TIA
>
> Bob

You might find the show_identifiers command helpful.  It includes
a few extra vars you didn't define, but should always list everything
you did define.

teragon-2:~ was$ sage
----------------------------------------------------------------------
| SAGE Version 3.1.1, Release Date: 2008-08-20                       |
| Type notebook() for the GUI, and license() for information.        |
----------------------------------------------------------------------

sage: show_identifiers()
['fortran', 'Out', 'variables', 'In', 'help', 'view_all', 'attached_files']
sage: a = 10; b = 17; x = 3990230
sage: show_identifiers()

['fortran',
 'Out',
 'variables',
 'In',
 'a',
 'help',
 'view_all',
 'b',
 'attached_files',
 'x']
sage:

--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-support@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/sage-support
URLs: http://www.sagemath.org
-~----------~----~----~----~------~----~------~--~---

Reply via email to