Skip to content

Instantly share code, notes, and snippets.

@oca159
Created June 14, 2015 18:23
Show Gist options
  • Save oca159/4ff2069daffcf278a2d7 to your computer and use it in GitHub Desktop.
Save oca159/4ff2069daffcf278a2d7 to your computer and use it in GitHub Desktop.
Simular switch en python
def f(x):
return {
'a': 1,
'b': 2,
}.get(x, "No se encontró esa opción")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment