Skip to content

Instantly share code, notes, and snippets.

@raph-amiard
Created December 25, 2010 13:28
Show Gist options
  • Save raph-amiard/754877 to your computer and use it in GitHub Desktop.
Save raph-amiard/754877 to your computer and use it in GitHub Desktop.
posterous post python example 3
def func1(c=30, d=50, **kwargs):
return c + d + func2(**kwargs)
def func2(a=15, b=10):
return a + b
func1(c=3, d=5)
func1(3, d=5, a = 40)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment