1 #定义一个类 2 class Cat: 3 #属性 4 5 6 #方法 7 def eat(self): 8 print('猫在吃鱼。。。') 9 10 def drink(self): 11 print('喝水。。') 12 #第二种显示 13 def introduce(self): 14 print('%s的年龄是%d'%(self.name,self.age)) 15 16 #创建对象 17 tom = Cat() 18 19 #调用tom指向的对象的方法 20 tom.eat() 21 tom.drink() 22 23 #给tom指向的对象添加2个属性 24 tom.name = '汤姆' 25 tom.age = 40 26 tom.introduce() 27 28 #第一种 29 #print('%s的年龄是%d'%(tom.name,tom.age)) 30 31 #添加多个对象 32 lanmao = Cat() 33 lanmao.name = '蓝猫' 34 lanmao.age = 20 35 lanmao.introduce()