Python Math: Print a complex number and its real and imaginary parts
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:
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.
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics