Skip to content

Instantly share code, notes, and snippets.

@waynew
Created February 12, 2014 01:24
Show Gist options
  • Save waynew/8948170 to your computer and use it in GitHub Desktop.
Save waynew/8948170 to your computer and use it in GitHub Desktop.
from __future__ import print_function
switch = {"case 1": lambda: print("Hey, case 1"),
42: lambda: print("The answer to life, the universe, and everything"),
"spam": lambda: print("A favourite metasyntactic variable of Pythonistas everywhere"),
"fnord": lambda: print("You can't see the fnords."),
}
val = "spam"
switch[val]()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment