Python multiple assignment and unpacking syntax
This is an easy foundational question on Python language mechanics. It tests whether you know the correct terminology for a common idiom: assigning values from a sequence (list, tuple, or iterable) to multiple variables in a single statement.
The question is straightforward but serves as a vocabulary check in Python interviews. Knowing the precise name matters when discussing code with colleagues or reading documentation. Understanding this concept also underpins more advanced patterns you'll encounter in data processing and algorithmic coding rounds.
- Sequence types and iterables in Python
- Left-hand side assignment syntax
- Related concepts: destructuring, starred expressions, and extended unpacking