Python Vérifiez si a un attribut
if hasattr(a, 'property'):
a.property
Troubled Teira
if hasattr(a, 'property'):
a.property
if hasattr(a, 'property'):
doStuff(a.property)
else:
otherStuff()