Answers for "python how to check if an attribute exists"

11

python check if has attribute

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

python check if attribute exists in class

if hasattr(obj, 'propertyName'):
	...
Posted by: Guest on March-10-2021

Code answers related to "python how to check if an attribute exists"

Python Answers by Framework

Browse Popular Code Answers by Language