When unpacking values from an iterable, you may only be interested in a few of the elements. Using the *_
wildcard allows you to ignore the remaining elements without having to assign them to named variables. This helps keep the code clean and concise.
Ignore Unneeded Values During Python Iterable Unpacking
