Created
September 17, 2025 15:33
-
-
Save gvitalie/192e3e189c7b62ae3752a57bddf2638c to your computer and use it in GitHub Desktop.
e^x
This file contains hidden or 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
| 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:~$ |
Author
gvitalie
commented
Sep 17, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment