Skip to content

Instantly share code, notes, and snippets.

@eyaltrabelsi
Created June 21, 2019 07:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save eyaltrabelsi/4ff6af4a0e2ea4b74b6fdd651b7b6b0a to your computer and use it in GitHub Desktop.
Save eyaltrabelsi/4ff6af4a0e2ea4b74b6fdd651b7b6b0a to your computer and use it in GitHub Desktop.
Python-tricks unpack variables with unpacking unknown length
>>> a, *b, c = [1, 2, 3, 4, 5]
>>> a
1
>>> b
[2, 3, 4]
>>> c
5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment