Tuples are similar to Lists except that they cannot be modified. We cannot add or remove elements from a tuple once it is declared.
Tuples are read-only and can only be accessed or searched for elements.
We can declare a tuple using the ()
brackets.
Attempting to add an element to the planets
tuple will result in an error.