Skip to content

Instantly share code, notes, and snippets.

@att14
Last active December 12, 2015 08:18
Show Gist options
  • Save att14/4742779 to your computer and use it in GitHub Desktop.
Save att14/4742779 to your computer and use it in GitHub Desktop.
Lambda tuple expansion
t = lambda x: (lambda a, b: a * b)(*x)
t((5, 2)) # 10
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment