Skip to content

Instantly share code, notes, and snippets.

@emperorcezar
Created September 11, 2012 20:09
Show Gist options
  • Select an option

  • Save emperorcezar/3701651 to your computer and use it in GitHub Desktop.

Select an option

Save emperorcezar/3701651 to your computer and use it in GitHub Desktop.
>>> def a(user, *args, **kwargs):
... print user
...
>>> b = {'user':'stuff'}
>>> a(**b)
stuff
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment