class Parent():
def __init__(self, name):
print(name)

class Son(Parent):
def __init__(self, name):
super().__init__(name)

s = Son(name="ccc")