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:
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/python-exercises/math/python-math-exercise-32.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics