Last active
August 11, 2017 12:31
-
-
Save marciomazza/b1554d4c31916f11dd12203c949e41cb to your computer and use it in GitHub Desktop.
This file contains 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 or a == 2 or a == 3 # a == 1 or a == 2 or a == 3 or ... or a == N | |
a in [1, 2, 3] # a in [1, 2, 3, ..., N] | |
a if a else b | |
a or b | |
# ... list building with appends => list comprehensions | |
# ... similiar for set and dict comprehensions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment