Created
November 7, 2023 01:21
-
-
Save don1138/211f742ccf2bc90f2c7a866d4a2799ed to your computer and use it in GitHub Desktop.
Print Phi (Φ) to 50 places
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
phi = 5**0.5*0.5+0.5 | |
formatted_phi = f"{phi:.50f}" | |
print(formatted_phi) | |
# 1.61803398874989490252573887119069695472717285156250 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment