在Python中,可以使用dir()
函数来获取对象的属性列表,但是它返回的列表是未排序的。以下是如何使用dir()
函数的示例:
class Example:
def __init__(self):
self.attribute1 = "value1"
self.attribute2 = "value2"
example = Example()
attributes = dir(example)
print(attributes)
输出:
['__class__', '__delattr__', '__dict__', '__dir__', '__doc__', '__eq__', '__format__', '__ge__', '__getattribute__', '__gt__', '__hash__', '__init__', '__init_subclass__', '__le__', '__lt__', '__module__', '__ne__', '__new__', '__reduce__', '__reduce_ex__', '__repr__', '__setattr__', '__sizeof__', '__str__', '__subclasshook__', '__weakref__', 'attribute1', 'attribute2']
在这个例子中,我们创建了一个名为Example
的类,并在其中定义了两个属性:attribute1
和attribute2
。然后,我们创建了一个Example
类的实例,并使用dir()
函数获取了该实例的属性列表。最后,我们打印出了属性列表。
需要注意的是,dir()
函数返回的列表中包含了对象的所有属性,包括私有属性和方法。如果只想获取对象的公共属性,可以使用vars()
函数,它返回的是一个字典,其中包含了对象的所有公共属性和它们的值。以下是如何使用vars()
函数的示例:
class Example:
def __init__(self):
self.attribute1 = "value1"
self.attribute2 = "value2"
example = Example()
attributes = vars(example)
print(attributes)
输出:
{'attribute1': 'value1', 'attribute2': 'value2'}
在这个例子中,我们使用vars()
函数获取了Example
类的实例的公共属性和它们的值,并打印出了结果。
领取专属 10元无门槛券
手把手带您无忧上云