Introduction
Tuples are used to store a group of items together that should not change. They keep data safe and organized.
When you want to keep a list of values that should not be changed, like days of the week.
When you want to use a fixed set of values as keys in a dictionary.
When you want to return multiple values from a function safely.
When you want to group related data that belongs together and should stay the same.