Skip to content

Instantly share code, notes, and snippets.

@yingtai
Created September 18, 2011 16:34
Show Gist options
  • Save yingtai/1225244 to your computer and use it in GitHub Desktop.
Save yingtai/1225244 to your computer and use it in GitHub Desktop.
memo
def foo(a,b):
return a+b, a*b
def bar(c,d):
return c-d, c/d
foo(*bar(1,2)) #barの返り値が展開される
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment