Python

admin, 26 июля 2020 г. 23:15


class Horror:
    def __init__(self, **kwargs):
        self.__dict__.update(kwargs)

h = Horror(a=1, b=2)
print(h.a+h.b)