I want to check if a variable exists. Now I'm doing something like this:
try:
myVar
except NameError:
# Doint smth
Are there any other ways without exceptions? Or is that part of code right?
|
|
To check the existence of a local variable:
To check the existence of a global variable:
To check if an object has an attribute:
|
|||||||||||
|
|
The use of variables that haven't been defined is actually a bad thing in any language since it indicates that the logic of the program hasn't been thought through properly. Python will assume you know what you're doing, otherwise you'd be using VB :-). The following trick, which is similar to yours, will ensure that a variable has some value before use:
However, I still don't think that's a good idea - in my opinion, you should refactor your code so that this situation does not occur. |
|||||||||||||||
|
|
Using try/except is the best way to test for a variable's existence. But there's almost certainly a better way of doing whatever it is you're doing than setting/testing global variables. For example, if you want to initialize a module-level variable the first time you call some function, you're better off with code something like this:
|
|||
|
|
||||
|
|
|
A way that often works well for handling this kind of situation is to not explicitly check if the variable exists but just go ahead and wrap the first usage of the possibly non-existing variable in a try/except NameError:
|
|||
|
|