class Horror: def __init__(self, **kwargs): self.__dict__.update(kwargs) h = Horror(a=1, b=2) print(h.a+h.b)