Answers for "python check attribute of object"

11

python check if has attribute

if hasattr(a, 'property'):
    a.property
Posted by: Guest on May-19-2020
1

python get attributes of object

getattr(object, 'attribute_name')
Posted by: Guest on July-14-2020

Code answers related to "python check attribute of object"

Python Answers by Framework

Browse Popular Code Answers by Language