1 2 3 4 5 6 7
class Fruit: pass class Orange(Fruit): def __init__(self): super(Orange, self).__init__() # [super-with-arguments]