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

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:

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.

Python: Tips of the Day

Get Current Process Id:

import os
os.getpid()
21423

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook