Skip to content

Instantly share code, notes, and snippets.

@techstackmedia
Last active September 19, 2019 14:13
Show Gist options
  • Save techstackmedia/7124667014beda4f33f533944a331593 to your computer and use it in GitHub Desktop.
Save techstackmedia/7124667014beda4f33f533944a331593 to your computer and use it in GitHub Desktop.
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