Tuple

A tuple is a data structure that is an immutable, or unchangeable, ordered sequence of elements. Because tuples are immutable, their values cannot be modified.

Generally, tuples use less memory than a list or array. It allows for slicing and indexing like lists but do not have methods for deleting or changing elements.

Key Characteristics of Tuples:

Example (Python):

# creating a tuple 
mySiblings = ('Susan', 'James', 'Bryan')

# accessing an element within a tuple:
mySiblings[2]