Skip to content

Instantly share code, notes, and snippets.

@don1138
Created November 7, 2023 01:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save don1138/211f742ccf2bc90f2c7a866d4a2799ed to your computer and use it in GitHub Desktop.
Save don1138/211f742ccf2bc90f2c7a866d4a2799ed to your computer and use it in GitHub Desktop.
Print Phi (Φ) to 50 places
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