Skip to content

Commit 5d0568a

Browse files
authored
Create conjugate.py
1 parent d5abe5d commit 5d0568a

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

conjugate.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
a = 5 +6j
2+
a.conjugate()
3+
(5-6j)
4+
5+
6+
a=6+4j
7+
b=3+2j
8+
print ("Division of complex numbers - a=",a, "b=",b, "a/b=", a/b)

0 commit comments

Comments
 (0)