代码示例:(标识:python_ref_vars)
python_ref_vars.py
class Person:
  name = "Bill"
  age = 63
  country = "USA"

x = vars(Person)

print(x)
运行结果: