Addition of two complex number in python by R4R Team

-here we perform addition of two complex.
- In addition of two complex, real part are add to real and imaginary part is add to imaginary.

Example-

first complex is 1+2j
second complex is 2+1j
addition is 3+3j

first complex is 5+2j
second complex is -1+0j
addition is 4+2j


program-

print("Enter first complex number")
n1=complex(input())
print("Enter second complex number")
n2=complex(input())

print("First complex is ",n1)
print("Second complex is ",n2)
print("Addition of both complex number is ",n1+n2)


output-

Enter first complex number
3+2j
Enter second complex number
1+2j
First complex is (3+2j)
Second complex is (1+2j)
Addition of both complex number is (4+4j)

Enter first complex number
-1-4j
Enter second complex number
0+2j
First complex is (-1-4j)
Second complex is 2j
Addition of both complex number is (-1-2j)


-In this program, we take input of two complex number by complex(input()) and add both number by '+' operator and print that addition.
-How complex(input()) works ? actually input() function take input of string i.e. 1+2j then by complex() we doing type casting here which convert string into required complex number.




Leave a Comment:
Search
Categories
R4R Team
R4Rin Top Tutorials are Core Java,Hibernate ,Spring,Sturts.The content on R4R.in website is done by expert team not only with the help of books but along with the strong professional knowledge in all context like coding,designing, marketing,etc!