w3resource

Python Math: Add, subtract, multiply and division of two complex numbers

Python Math: Exercise-33 with Solution

Write a Python program to add, subtract, multiply, and divide two complex numbers.

Sample Solution:

Python Code:

print("Addition of two complex numbers : ",(4+3j)+(3-7j))
print("Subtraction of two complex numbers : ",(4+3j)-(3-7j))
print("Multiplication of two complex numbers : ",(4+3j)*(3-7j))
print("Division of two complex numbers : ",(4+3j)/(3-7j))

Sample Output:

Addition of two complex numbers :  (7-4j)                                                                     
Subtraction of two complex numbers :  (1+10j)                                                                 
Multiplication of two complex numbers :  (33-19j)                                                             
Division of two complex numbers :  (-0.15517241379310348+0.6379310344827587j) 

Pictorial Presentation:

Python Math: Write a Python program to add, subtract, multiply and division of two complex numbers

Flowchart:

Flowchart: Write a Python program to add, subtract, multiply and division of two complex numbers

Python Code Editor:

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

Previous: Write a Python program to print a complex number and its real and imaginary parts.
Next: Write a Python program to get the length and the angle of a complex number.

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.