Skip to content

Instantly share code, notes, and snippets.

@bitxel
Last active August 29, 2015 14:22
Show Gist options
  • Save bitxel/8edf7c17b66949d60121 to your computer and use it in GitHub Desktop.
Save bitxel/8edf7c17b66949d60121 to your computer and use it in GitHub Desktop.
python alternative switch
#!/usr/bin/env python
# coding=utf-8
def switch(key):
return {
'keya': '123',
'keyb': '456',
'keyc': 'aaa'
}.get(key,'8888')
if __name__ == '__main__':
print switch('keyb')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment