Introduction
Tuple unpacking helps you take values from a group and put them into separate boxes (variables) easily.
When you get multiple values from a function and want to save each value separately.
When you want to swap two values without using a temporary box.
When you want to quickly assign many values from a list or tuple to variables.
When you want to loop over pairs or groups of values and handle each part separately.