Angenommen, ich habe ein Szenario mit Mehrfachvererbung: class A(object): # code for A here class B(object): # code for B here class C(A, B): def __init__(self): # What's the right code to write here to ensure # A.__init__ and B.__init__ get called? Es gibt zwei typische Ansätze zum...