标签: python python-3.x object getter-setter
我有一个物体。使用__dict__,我可以列出对象的所有属性。使用__dir__,我可以列出对象的所有方法和属性。有没有一种方法可以列出具有对象实例的类中声明的setter属性的属性。
编辑:找到解决方案,可以使用isinstance(getattr(type(object),'attribute'),property)。感谢a_guest