随笔分类 -  类与对象

摘要:#coding=utf-8 #repr方法字符串输出实例对象的值 class CountFromBy(object): def __init__(self, val=0, incr=1): self.val = val self.incr = incr def increase(self): self.val += self.i... 阅读全文
posted @ 2018-06-26 08:25 道高一尺 阅读(136) 评论(0) 推荐(0) 编辑