Back Navigation Next Navigation Video 6: Lists Tuples Dictionaries (page 8 of 14)

TuplesTuples can store items (elements) with mixed data types. For instance, the first indexed position may be an integer, the second indexed position may be a string, and so on.

TuplesTuples are zero-based so the first item is in the 0th index position. To extract the items in a tuple, we use the index position in hard brackets. We may reference a single index position or multiple index positions in the hard brackets.