(An Unofficial) Python Reference Wiki

"clearly marked experimental"

Lists

The items of a list are arbitrary Python objects. Lists are formed by placing a comma-separated list of expressions in square brackets. (Note that there are no special cases needed to form lists of length 0 or 1.)

The extension module array provides an additional example of a mutable sequence type.

See also: list

Comments

Needs implementation information (big-O stuff etc), and reference information.