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"
|
2
|
|||||||||
|
|
|
A compact way:
htw's way is more Pythonic, though.
|
||||||
|
|
|
|
||||||||
|
|
|
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.
|
||
|
|