摘要: #多重继承 class Base(object): def __init__(self): print("Base init") class Medium1(Base): def __init__(self): super(Medium1,self).__init__() print("Medium 阅读全文
posted @ 2018-09-27 14:02 巍然~chelsea 阅读(85) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/env python # -*- coding: utf-8 -*- # @Time : 2018/9/27 9:33 # @Author : 王巍 # @Site : # @File : 装饰器.py # @Software: PyCharm#装饰器:#简言之,python装 阅读全文
posted @ 2018-09-27 14:01 巍然~chelsea 阅读(180) 评论(0) 推荐(0) 编辑