【python】多重继承
参考问题:https://stackoverflow.com/questions/9575409/calling-parent-class-init-with-multiple-inheritance-whats-the-right-way
多重继承方式:
1、如果都是普通类, 最好逐个
2、搞一个Mix in 类, __init__传(*args, **kwargs)
3、所有人都是 Coop类,__init___传(**kwargs)
super是个函数,返回的是第二个参数object,在第一个参数之后(之后是指MRO顺序)的类。
更多内容看:https://rhettinger.wordpress.com/2011/05/26/super-considered-super/