【发布时间】:2013-11-13 01:13:27
【问题描述】:
这里我看不懂super这个词的用法?它是一个类或函数还是其他什么?
从下面的代码:
class Child(SomeBaseClass):
def __init__(self):
super(Child, self).__init__()
有人可以解释一下下面这行代码吗?
super(Child, self).__init__()
【问题讨论】:
标签: python inheritance