Skip to content

Instantly share code, notes, and snippets.

@raph-amiard
Created December 25, 2010 13:25
Show Gist options
  • Save raph-amiard/754875 to your computer and use it in GitHub Desktop.
Save raph-amiard/754875 to your computer and use it in GitHub Desktop.
posterous post python example 2
def func(**kwargs):
for key, arg in kwargs:
print "key: ", key, "arg: ", arg
func(a=15, b= 12)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment