What is the term to describe this code? count, fruit, price = (2, 'apple', 3.5)
count, fruit, price = (2, 'apple', 3.5)
Tuple assignment.
Tuple unpacking.
Tuple matching.
Tuple duplication.