destructuring

Destructuring (also called unpacking) is where we take a collection, like a list or a tuple, and we break it up into individual values. This is quite useful, as it enables us to do things like destructuring assignments, where we assign values to several variables at once from a single collection.