Ask Your Question
0

Clearing all user-defined variables from current session

asked 12 years ago

Louisa Grey gravatar image

I'm using Sage from the interactive shell. How can I clear/remove all the variables I have defined so far in my current session?

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
5

answered 12 years ago

DSM gravatar image

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.

Preview: (hide)
link

Comments

Doing this in Sage 7.6 gives:

sage: a=2; a
2
sage: reset()
sage: a
Traceback (most recent call last):
...
NameError: name 'a' is not defined
sage: quit
Traceback (most recent call last):
...
NameError: name 'quit' is not defined

This issue is considered in this ticket: reset does not restore "quit"

jipilab gravatar imagejipilab ( 8 years ago )

%reset -s looks like a potentially better way to do this.

John Palmieri gravatar imageJohn Palmieri ( 8 years ago )

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 12 years ago

Seen: 5,955 times

Last updated: Dec 20 '12