w3resource

Python Math: Print a complex number and its real and imaginary parts

Python Math: Exercise-32 with Solution

Write a Python program to print a complex number and its real and imaginary parts.

Sample Solution:

Python Code:

#Initialize a complex number
cn = complex(2,3)
print("Complex Number: ",cn)
print("Complex Number - Real part: ",cn.real)
print("Complex Number - Imaginary part: ",cn.imag)

Sample Output:

Complex Number:  (2+3j)                                                                                       
Complex Number - Real part:  2.0                                                                              
Complex Number - Imaginary part:  3.0  

Flowchart:

Flowchart: Find the roots of a quadratic function

Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to convert a binary number to decimal number.
Next: Write a Python program to add, subtract, multiply and division of two complex numbers.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.