Created
September 8, 2016 18:15
-
-
Save 0x49D1/986b02c0a0845bb5a7c7eafbc5ac664b 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] | |
print("Printing numbers less then 5 \n") | |
print([t for t in a if t < 5]) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment