Skip to content

Instantly share code, notes, and snippets.

@SegFaultAX
Created April 3, 2015 18:17
Show Gist options
  • Save SegFaultAX/b480b4b4c8b9bf7f8b7e to your computer and use it in GitHub Desktop.
Save SegFaultAX/b480b4b4c8b9bf7f8b7e to your computer and use it in GitHub Desktop.
>>> def example():
... return 1, 2, 3
...
>>> example()
(1, 2, 3)
>>> a, b, c = example()
>>> a
1
>>> b
2
>>> c
3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment