代码示例:(标识:python_class_3)
python_class_3.py
class Person:
  def __init__(self, name, age):
    self.name = name
    self.age = age

p1 = Person("Bill", 63)

print(p1.name)
print(p1.age)
运行结果: