Last active
November 29, 2015 01:48
-
-
Save adow/a854489b4cdbd02c7762 to your computer and use it in GitHub Desktop.
python 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
result = { | |
'a': lambda x: x * 5, | |
'b': lambda x: x + 7, | |
'c': lambda x: x - 2 | |
}.get(value,'') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment