• [ ] Lists

    class list[iterable]

    • Links
    • Documentation Info
    • Book
    • Code
    • SandBox

    About

    A list is a mutable collection of items in sequence.

    Lists can hold references to any or multiple data types - including other lists.

    Operations

    Initialization

    Empty Declaration

    Copying in whole

    Coping in part slice notation

    Referencing Elements in a List

    Iterating over a List

    for item in <list>

    min(<list>)

    max(<list>)

    <list>.index()

    <list>.append()

    <list>.reverse()