print(*cmath.polar(cnum), sep ='\n')
I just came across this line while solving a complex number problem.
What is the use of *
before cmath
?
print(*cmath.polar(cnum), sep ='\n')
I just came across this line while solving a complex number problem.
What is the use of *
before cmath
?