Skip to content

Instantly share code, notes, and snippets.

@gmorell
Created July 31, 2014 18:16
Show Gist options
  • Save gmorell/0ef050b2422ba90ff55e to your computer and use it in GitHub Desktop.
Save gmorell/0ef050b2422ba90ff55e to your computer and use it in GitHub Desktop.
>>> def elk(height, weight):
... print weight
... print height
...
>>> input = {"height":1, "weight":2}
>>> elk(**input)
2
1
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment