Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created July 18, 2013 08:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AeroNotix/6027648 to your computer and use it in GitHub Desktop.
Save AeroNotix/6027648 to your computer and use it in GitHub Desktop.
class switch(object):
def __getitem__(self, index):
try:
return getattr(self, "case_"+index)()
except AttributeError:
return self.default()
def case_hello(self):
print 'Hello!'
def default(self):
print 'this is default!'
switch()['hello']
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment