vars函数用于返回对象的__dict__属性,或者说返回对象的属性和对应的值的字典。
例如:
class Person:
def __init__(self, name, age):
self.name = name
self.age = age
person = Person("Alice", 30)
print(vars(person)) # 输出 {'name': 'Alice', 'age': 30}
vars函数通常被用于调试和动态查看对象的属性。