vote up 3 vote down star

How do you know whether a variable has been set at a particular place in the code at runtime? This is not always obvious because (1) the variable could be conditionally set, and (2) the variable could be conditionally deleted. I'm looking for something like defined() in Perl or isset() in PHP.

if condition:
    a = 42

# is a defined here?

if other_condition:
    del a

# is a defined here?
flag

2  
Duplicates: stackoverflow.com/questions/843277/…, stackoverflow.com/questions/750298/…, – cvondrick Oct 20 at 6:50
1  
Please, please, please, do not "conditionally" set a variable. That's just dreadful, horrible design. Always, always, always provide for all logic paths. Please do not continue doing this. – S.Lott Oct 20 at 10:35

6 Answers

vote up 7 vote down check
try:
  thevariable
except NameError:
  print "well, it WASN'T defined after all!"
else:
  print "sure, it was defined."

Despite the unexplained downvotes, try/except/else is nevertheless the right way to handle anomalous situations in Python. If you trust the anonymous, silent downvoters more than you trust me, go ahead and do it wrong; otherwise, you might want to consider this suggestion as it deserves!-)

link|flag
1  
Your solution is wrong because the premise of the question is wrong: you shouldn't be in a situation where you don't know if a variable is defined. – Aaron Gallagher Oct 20 at 7:33
@Aaron: There are many cases when you don't know whether variable is defined. You can refactor code to avoid this in many, but not all cases. Alex's solution is correct and it the best when refactoing is not possible for some reasons. There is not much information in the question, so I believe only person asked it can select the best way to handle his case. – Denis Otkidach Oct 20 at 7:58
@Denis: I see that you are much more optimistic than I am. – Aaron Gallagher Oct 20 at 8:01
@Denis Otkidach: If there are any cases where you don't absolutely know if a variable is defined, you have a broken design. – S.Lott Oct 20 at 14:22
1  
@Aaron, "should" is a 4-letter word -- e.g. no driver "should" ever exceed the speed limit, but that doesn't mean you don't take all proper and needed precautions against those who nevertheless do. Maintaining fragile, undertested legacy code with somewhat-broken design that you inherited from somebody else is a fact of life, and those who can only think of big-bang rewriting from scratch rather than cautiously and incrementally need to re-read Joel's 9-years-old essay joelonsoftware.com/articles/fog0000000069.html/… . – Alex Martelli Oct 20 at 14:51
show 1 more comment
vote up 4 vote down

The correct answer to the question, "How do I discover if a variable is defined in python?" is the not-very-useful but entirely-pythonic answer:

Read the source file starting at the point where you want to discover if a variable is defined, going up in the file to the start of the source file. If you don't see the variable defined, then it is not defined.

To answer the real question you're asking, "Why is it not obvious how to deal with the situation where I have used the del keyword?"

Don't use the del keyword. It is not useful.

link|flag
vote up 3 vote down

For this particular case it's better to do a = None instead of del a. This will decrement reference count to object a was (if any) assigned to and won't fail when a is not defined. Note, that del statement doesn't call destructor of an object directly, but unbind it from variable. Destructor of object is called when reference count became zero.

link|flag
vote up 6 vote down

I think it's better to avoid the situation. It's cleaner and clearer to write:

a = None
if condition:
    a = 42
link|flag
1  
If you like to do it that way you should make the initial value unique so you can distinguish from something setting a to None ie. UNDEFINED=object();a=UNDEFINED then you can test with a is not UNDEFINED – gnibbler Oct 20 at 7:03
vote up 3 vote down

'a' in vars() or 'a' in globals()

if you want to be pedantic, you can check the builtins too
'a' in vars(__builtins__)

link|flag
vote up 1 vote down
try:
    a # does a exist in the current namespace
except NameError:
    a = 10 # nope
link|flag
disregard that, ... – Brandon Thomson Oct 20 at 6:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.