Last active
August 29, 2015 14:22
-
-
Save bitxel/8edf7c17b66949d60121 to your computer and use it in GitHub Desktop.
python alternative switch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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