Skip to content

Instantly share code, notes, and snippets.

@cpebble
Last active June 27, 2018 15:37
Show Gist options
  • Save cpebble/721e1a4d0d7ef0281ce8610c94643eed to your computer and use it in GitHub Desktop.
Save cpebble/721e1a4d0d7ef0281ce8610c94643eed to your computer and use it in GitHub Desktop.
Python Switch
switch = lambda funcs, query: funcs[query] if query in funcs else funcs['default']
# Porting the switch statement to python
# GPL Christian Påbøl Jacobsen @mrcpj1998
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment