a sequence class A container object which behaves much like a Python sequence. i.e. the [] operator behaves as expected, returning an element or slice and the len() function returns the size of the list. One difference is that all elements are of the same type. In the C++ layer this is a commonly used template container class.