摘要: 一、复习 1、什么是多态 2、复习上一节课内容 class Triangle: """ 三角形类 """ def __init__(self, width, height): self.width = width self.height = height def get_area(self): area = ... 阅读全文
posted @ 2019-11-17 15:19 绿色的麦田 阅读(121) 评论(0) 推荐(0) 编辑