Created
August 22, 2012 16:05
-
-
Save tabouassaleh/3427055 to your computer and use it in GitHub Desktop.
Conditional Expression in Python
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
| my_value = condition and true_value or false_value |
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
| my_value = true_value if condition else false_value |
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
| if condition: | |
| my_value = true_value | |
| else: | |
| my_value = false_value |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment