Created
March 31, 2013 03:16
-
-
Save drupalista-br/5279373 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
| def my_switch_case(value): | |
| return { | |
| 'cow' : 'This is an animal', | |
| 'apple' : 'This is a fruit', | |
| 'lettuce' : 'This is a vegetable', | |
| }.get(value, 'I dont know what that is') | |
| my_switch_case('cow') | |
| # This is an animal | |
| my_switch_case('house') | |
| # I dont know what that is |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment