Created
March 20, 2021 10:04
-
-
Save AnisahTiaraPratiwi/70738c5fa89063d5d17a7fde03553b7d to your computer and use it in GitHub Desktop.
Replace the ___ placeholder and calculate the Golden ratio: \frac{1+\sqrt{5}}{2} 2 1+ 5 . Tip: to calculate the square root of a number xx, you can use x**(1/2).
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
ratio = ((1+(5**(1/2)))/2) | |
print(ratio) |
This really help me like a lot, so I wanna say thank u so much.
Thank you!
This helps a ton! Thank you!
@moh707 Thank you!
thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ratio = ((1+(5**(1/2)))/2)
print(ratio)