Tuples are like lists but are much faster. However, tuple values cannot be changed.

We tend to use tuples for read-only data that remains constant while the program is running.

Great! It's just like a list, but remember that we can't change the value of tup2[1] as we could with a list.