Last active
September 19, 2019 14:13
-
-
Save techstackmedia/7124667014beda4f33f533944a331593 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
z = 2 + 17.6j | |
print(z) | |
# (2 + 17.6j) | |
print(z.real) | |
# 2.0 | |
print(z.imag) | |
# 17.6 | |
print(z.conjugate()) | |
# (2-17.6j) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment