Skip to content

Instantly share code, notes, and snippets.

@GitMoIO
Created October 4, 2015 23:20
Show Gist options
  • Save GitMoIO/67769ab761f4e03e6f04 to your computer and use it in GitHub Desktop.
Save GitMoIO/67769ab761f4e03e6f04 to your computer and use it in GitHub Desktop.
>>> def table_things(**kwargs):
... for name, value in kwargs.items():
... print '{0} = {1}'.format(name, value)
...
>>> table_things(apple = 'fruit', cabbage = 'vegetable')
cabbage = vegetable
apple = fruit
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment