Skip to content

Instantly share code, notes, and snippets.

@drupalista-br
Created March 31, 2013 03:16
Show Gist options
  • Select an option

  • Save drupalista-br/5279373 to your computer and use it in GitHub Desktop.

Select an option

Save drupalista-br/5279373 to your computer and use it in GitHub Desktop.
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