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