Skip to content

Instantly share code, notes, and snippets.

@thisfred
Created April 19, 2013 19:57
Show Gist options
  • Save thisfred/5422814 to your computer and use it in GitHub Desktop.
Save thisfred/5422814 to your computer and use it in GitHub Desktop.
>>> def foo(*args):
... print type(args)
...
...
>>> foo([1, 2, 3])
<type 'tuple'>
>>>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment