Skip to content

Instantly share code, notes, and snippets.

@SametSahin10
Created October 5, 2019 17:02
Embed
What would you like to do?
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