I am able to understand what constructors are. But why can't python take initializer lists like c++?
class test:
def __init__(self, arg1, arg2, arg3):
self.arg1 = arg1
self.arg2 = arg2
self.arg3 = arg3
how will those arguments ever be set without being so manual?
Thanks.