I'm trying (because I think it should exists) to define a class but it would receive a tuple as an input.
What I mean is:
class Class_name:
def __init__(self, (a,b)):
but it obviously generates an error. I don't know, just think I want to plot many complex numbers that I have written in a two-column list its real part and imaginary part. I know I can unpack, but I want to know if there is a way of doing it directly so i cant write (1,2) as an input, not 1,2. Thanks!