Extracting values from iterables directly into variables or function arguments.
- Unpacking a list into function arguments with
* - Unpacking a tuple into variables
- Unpacking a function's return value
- Star operator
*restto capture remaining elements - Unpacking with
zip zip_longestfromitertoolsfor iterables of unequal length
python unpacking.py