You should read the Python documentation's guide to the iterator protocol here: https://docs.python.org/2/library/stdtypes.html#iterator-types
Basically, iterators in Python are those which conform to a general protocol for iterating over elements in a container. A list is a specific container type that conforms to that protocol.