vote up 2 vote down star
2

Hello.

Is it any way to check if a variable (class member or standalone) with specified name defined? Example:

if "myVar" in myObject.__dict__ : # not an easy way
  print myObject.myVar
else
  print "not defined"
flag

Under what circumstances did you forget you were using a variable? What possible situation leads to this question? – S.Lott Apr 15 at 10:09
third-party class, need to set a flag for my private purpose, don't want to mess class __init__() – Eye of Hell Apr 15 at 16:19
That's really confusing. Why write a lot of code to determine what variables are used? Just create an instance, print instance.__dict__.keys() or do dir(instance) and you know all the attribute names. – S.Lott Apr 15 at 17:26
I'm afraid I'm also confused. The question asks about both class members and standalone vars. Obviously, there's no init for standalone, top-level vars; what 3rd party miasma is so poorly built that so many of its variables, at multiple scope levels, are at risk of being completely non-existent? – Jarret Hardie Apr 15 at 23:13

3 Answers

vote up 6 vote down check

A compact way:

print myObject.myVar if hasattr(myObject, 'myVar') else 'not defined'

htw's way is more Pythonic, though.

hasattr() is different from x in y.__dict__, though: hasattr() takes inherited class attributes into account, as well as dynamic ones returned from __getattr__, whereas y.__dict__ only contains those objects that are attributes of the y instance.

link|flag
I think he's just looking for hasattr(). – monkut Apr 15 at 4:44
Yeah, most probably. And what about a global variable? (declared in module, not in a class namespace)? – Eye of Hell Apr 15 at 16:20
@Eye of Hell: perhaps (x in globals()), but my real answer would be that code that needs to do that is un-Pythonic and should really be initializing the variable to None. – Miles Apr 15 at 18:55
vote up 5 vote down
try:
    print myObject.myVar
except NameError:
    print "not defined"
link|flag
At least get the variables and output right :-) +1 – paxdiablo Apr 15 at 4:29
Oops, nice catch. Thanks for the edit. – htw Apr 15 at 4:31
2  
If myObject is defined, but doesn't have a 'myVar', you'll get an AttributeError instead. – James Bennett Apr 15 at 5:11
vote up 0 vote down

Paolo is right, there may be something off with the way you're doing things if this is needed. But if you're just doing something quick and dirty you probably don't care about Idiomatic Python anway, then this may be shorter.

try: x
except: print "var doesn't exist"
link|flag

Your Answer

Get an OpenID
or

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