Python Collection Data Types:
A sequence type is one that supports the membership operator (in), the size function (len()), slices ([]), and is iterable.
Python provides five built-in sequence types: bytearray, bytes, list, str, and tuple.
Some other sequence types are provided in the standard library, most notably, collections.namedtuple.