摘要:
# 多重继承,经典钻石继承 class A: def ping(self): print('ping', self) class B(A): def pong(self): print('pong', self) class C(A): def pong(self): print('PONG', s 阅读全文
摘要:
1.一行代码实现如下功能 #方式一 # if len(self) != len(other): # return False # for a, b in zip(self, other): # if a != b: # return False # return True #方式二 return l 阅读全文