Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

check if an object has an attribute in Python

if hasattr(a, 'property'):
    doStuff(a.property)
else:
    otherStuff()
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #object #attribute #Python
ADD COMMENT
Topic
Name
9+8 =