Answers for "python check if instance has attribute"

11

python check if has attribute

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

Check instance has an attribute in python

if hasattr(a, 'property'):
    a.property
Posted by: Guest on September-20-2021

Code answers related to "python check if instance has attribute"

Python Answers by Framework

Browse Popular Code Answers by Language