python3:面向对象(多态和继承、方法重载及模块)
1、多态同一个方法在不同的类中最终呈现出不同的效果,即为多态。class Triangle: def __init__(self,width,height): self.width = width self.height = height def getArea(self): area=self.width* self.h...