Skip to content

Instantly share code, notes, and snippets.

@SametSahin10
Created October 5, 2019 17:02
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 SametSahin10/58b1eed2e5183cd6fb6bb7a769da5315 to your computer and use it in GitHub Desktop.
Save SametSahin10/58b1eed2e5183cd6fb6bb7a769da5315 to your computer and use it in GitHub Desktop.
a = [1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89]
for i in range(len(a)):
if a[i] < 5:
print(a[i])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment