摘要: class Base(object): def __init__(self,x,y,a): self.x=x self.y=y self.flag=1 self.a=a def move(self,a): if self.flag==1: self.x+=a ... 阅读全文
posted @ 2018-07-29 11:16 Iving 阅读(300) 评论(0) 推荐(0) 编辑