Skip to content

Instantly share code, notes, and snippets.

@gvitalie
Created September 17, 2025 15:33
Show Gist options
  • Save gvitalie/192e3e189c7b62ae3752a57bddf2638c to your computer and use it in GitHub Desktop.
Save gvitalie/192e3e189c7b62ae3752a57bddf2638c to your computer and use it in GitHub Desktop.
e^x
me@amadeus:~$ python3 -q
>>>
>>> import cmath
>>>
>>> a = 3
>>> for i in range(3):
... a += cmath.exp(a * 1j).imag
...
>>> print(a)
3.141592653589793
>>>
>>> # &•
>>>
me@amadeus:~$
@gvitalie
Copy link
Author

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment