Skip to content

Instantly share code, notes, and snippets.

@friskfly
Created December 26, 2012 14:43
Show Gist options
  • Save friskfly/4380681 to your computer and use it in GitHub Desktop.
Save friskfly/4380681 to your computer and use it in GitHub Desktop.
python switch
try:
{
'a': do_a,
'b': do_b,
'c': do_c
}[key](x)
except KeyError:
do_default
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment