python展示类中所有属性的方法
时间: 2023-11-08 14:06:38 浏览: 204
python 显示数组全部元素的方法
可以使用dir()函数来展示一个Python类中的所有属性和方法,例如:
```python
class MyClass:
def __init__(self):
self.prop1 = 'value1'
self.prop2 = 'value2'
obj = MyClass()
print(dir(obj))
```
输出结果为:
```
['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'prop1', 'prop2']
```
阅读全文