class Super: def __init__(self, x): print "super" + x class Sub(Super): def __init__(self, x, y): Super.__init__(self, x)