Category Python Tuple

Python Tuple – An Immutable Sequence

Python tuple is an immutable sequence. The tuple is created with values separated by a comma. Since a tuple is immutable, we can’t add or delete its elements. If the tuple elements are not immutable, their properties can be changed.…