Tuple: a sequence of data that's indexed in a fixed numeric order, starting at zero.
List: another sequence of data, which is similar to a tuple. However, its data can be modified.
Dictionary: yet another kind of indexed grouping of data. However, whereas lists and tuples are indexed by numbers, dictionaries are indexed by values that you choose.
Source: Beginning Python, by James Payne