Tuples: Immutable lists
A tuple is an ordered collection of items that cannot be changed after creation. In Python they use parentheses (). If you try to add or remove an element, you get an error.
A tuple is an ordered collection of items that cannot be changed after creation. In Python they use parentheses (). If you try to add or remove an element, you get an error.