Created
October 5, 2019 17:02
-
-
Save SametSahin10/58b1eed2e5183cd6fb6bb7a769da5315 to your computer and use it in GitHub Desktop.
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
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