Created
August 12, 2026 18:29
-
-
Save gregsadetsky/cdf5a52542cf3ba4c92bc836df6dc722 to your computer and use it in GitHub Desktop.
fibonacci sequence but more secret
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
| # this actually prints the fibo sequence for 10 items - download and run. | |
| ᅟ, ᅠ = 0, 1 | |
| for ᅟᅠ in range(10): | |
| print(ᅟ) | |
| ᅟ, ᅠ = ᅠ, ᅟ + ᅠ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
