Lesson 19: Tuples and When Data Should Not Change
What if we want to store a group of values but do not want its items accidentally changed? Python provides tuples for this purpose: ordered groups whose own item references cannot be replaced, added or removed in place. They are related to lists, but a tuple is not simply another name for a list. The key question is how order and immutability describe different features of the same sequence.
