To change the number to have an imaginary part of 2, the code would need to be altered to the following option:
a = complex(1.5, 2)
This will create a complex number where the real part is 1.5 and the imaginary part is 2.
The following code prints out a real number in complex form.
a = complex(1.5)
print(a)
How would the code need to be altered to change the number to have an imaginary part of 2?
(1 point)
Responses
a = complex(2,1.5)
a = complex(2,1.5)
a = complex(1.5,2)
a = complex(1.5,2)
a = complex(2)
a = complex(2)
a = complex(1.5)
b = complex(2)
a = complex(1.5) b = complex(2)
1 answer
To change the number to have an imaginary part of 2, the code would need to be altered to the following option:
a = complex(1.5, 2)
This will create a complex number where the real part is 1.5 and the imaginary part is 2.