I am looking for something similar to ‘clear’ in Matlab: A command/function which removes all variables from the workspace, releasing them from system memory. Is there such a thing in Python?
EDIT: I want to write a script which at some point clears all the variables.
The following sequence of commands does remove every name from the current module:
I doubt you actually DO want to do this, because “every name” includes all built-ins, so there’s not much you can do after such a total wipe-out. Remember, in Python there is really no such thing as a “variable” — there are objects, of many kinds (including modules, functions, class, numbers, strings, …), and there are names, bound to objects; what the sequence does is remove every name from a module (the corresponding objects go away if and only if every reference to them has just been removed).
Maybe you want to be more selective, but it’s hard to guess exactly what you mean unless you want to be more specific. But, just to give an example:
This sequence leaves alone names that are private or magical, including the
__builtins__special name which houses all built-in names. So, built-ins still work — for example:As you see, name
n(the control variable in thatfor) also happens to stick around (as it’s re-bound in theforclause every time through), so it might be better to name that control variable_, for example, to clearly show “it’s special” (plus, in the interactive interpreter, name_is re-bound anyway after every complete expression entered at the prompt, to the value of that expression, so it won’t stick around for long;-).Anyway, once you have determined exactly what it is you want to do, it’s not hard to define a function for the purpose and put it in your start-up file (if you want it only in interactive sessions) or site-customize file (if you want it in every script).