读书笔记之python深入面向对象编程
摘要:
# L14 深入面向对象编程#14.1类有2种类型的变量:类变量与实例变量class Rectangle(): def __init__(self,w,l): self.width=w self.len=l def print_size(self): print("""{}by""".format( 阅读全文
posted @ 2020-05-23 23:16 小肥羊要进步 阅读(202) 评论(0) 推荐(0)
浙公网安备 33010602011771号