python面向对象学习--1
面向对象编程的三大特性:封装性,继承性,多态性python创建类的标准格式:class Animal: num=0 #类变量 def __init__(self,aname,acolor): #构造方法 self.name=aname #成员变量 self.color=acolor def show(self): print("名字:{},颜色:{},数量:{}".format(self.name,self