Skip to content

Instantly share code, notes, and snippets.

@gregsadetsky
Created August 12, 2026 18:29
Show Gist options
  • Select an option

  • Save gregsadetsky/cdf5a52542cf3ba4c92bc836df6dc722 to your computer and use it in GitHub Desktop.

Select an option

Save gregsadetsky/cdf5a52542cf3ba4c92bc836df6dc722 to your computer and use it in GitHub Desktop.
fibonacci sequence but more secret
# this actually prints the fibo sequence for 10 items - download and run.
ᅟ, ᅠ = 0, 1
for ᅟᅠ in range(10):
print(ᅟ)
ᅟ, ᅠ = ᅠ, ᅟ + ᅠ
@gregsadetsky

Copy link
Copy Markdown
Author
image

@gregsadetsky

Copy link
Copy Markdown
Author
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment