CBSE Class 11 Informatics Practices
Question 28 of 102
Python Programming Fundamentals — Question 5
Back to all questionsK = complex(2,3)
Reason — Complex numbers are made up of pairs of real and imaginary numbers. They take the form 'x+yj' or 'x+yi', where x is the real part and y is the imaginary part. Therefore, according to this, K = complex(2,3) is not a complex number.