请问如何知道对象在Python中是否具有属性

如何知道对象在Python中是否具有属性

Python中是否有确定对象是否具有某种属性的方法?例如:

>>> a = SomeClass()>>> a.someProperty = value>>> a.propertyTraceback (most recent call last):
  File "<stdin>", line 1, in <module>AttributeError: SomeClass instance has no attribute 'property'

你怎么知道a有属性property在使用之前?


牛魔王的故事
浏览 454回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python