class Cat:
# 属性
# 方法
def eat(self):
print(“猫在吃鱼…”)
def drink(self):
print("猫在喝可乐...")
def introduce(self):
# print("名字是:%s, 年龄是:%d" % (汤姆的名字, 汤姆的年龄))
print("名字是:%s, 年龄是:%d" % (tom.name, tom.age))
#创建了一个对象
tom = Cat()
tom.name = “汤姆”
tom.age = 30
tom.eat()
tom.drink()
print(tom.name)
print(tom.age)
print("-"*30)
tom.introduce()
print("="*30)
#创建了另外一个对象
lan_mao = Cat()
lan_mao.name = “蓝猫”
lan_mao.age = 20
lan_mao.introduce()
通过一个类,可以创建多个对象,就好比 通过一个模具创建多个实体一样