Skip to content

Instantly share code, notes, and snippets.

@mike820324
Created February 3, 2014 08:19
Show Gist options
  • Save mike820324/8780414 to your computer and use it in GitHub Desktop.
Save mike820324/8780414 to your computer and use it in GitHub Desktop.
python test for issue 10
def foo(**kargs):
for val,key in kargs.items():
print "{0} -> {1}".format(val, key)
foo(hello_para='hello', world='world')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment