最佳答案
检查属性是否存在的更好方法是什么?
if hasattr(a, 'property'):
a.property
我认为也可以这样做:
if 'property' in a.__dict__:
a.property
一种方法通常比其他方法使用得更多吗?