Skip to content

Instantly share code, notes, and snippets.

@kirkegaard
Last active August 29, 2017 11:18
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 kirkegaard/6de3a245485e9f959dc055f4a9c2305e to your computer and use it in GitHub Desktop.
Save kirkegaard/6de3a245485e9f959dc055f4a9c2305e to your computer and use it in GitHub Desktop.
from random import randint
def s(x):
return {
0: 'foo',
1: 'bar',
2: 'flaf',
3: 'giraf'
}.get(x, 'none')
res = s(randint(0, 10))
print(res)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment