Li
Lists
in
Python
6 exercises
A "list" is a mutable collection of items in sequence. Like most collections, lists can hold any/multiple data type(s) - including other lists. They support all common sequence operations as well as mutable sequence operations, and can be iterated over using the "for item in <list>" or "for index, item in enumerate(<list>)" syntax.
Explore concept