Introduction
A tuple lets you store a fixed number of items with different types together. It helps keep related data organized and clear.
When you want to group a few values of different types, like a name and age.
When a function returns multiple values of different types.
When you want to represent a pair or triple of related data, like coordinates (x, y).
When you want to ensure the order and type of elements in a small collection.
When you want to pass a fixed set of mixed-type values as one variable.