In this video, I introduce the very basics of lists in the Python programming language. Lists are similar to arrays in other languages and can be thought of (sort of) as variables that hold more than one value.
Lists are dynamic (mutable). Once created, they can have values added or removed from them at run time and they can have values stored inside them changed.
In this video, I show you how to create a list, how to access individual members of the list ( called elements ) using indexes, how to add values to the list using the append method, and how to remove values from the list using the built-in del function.
This is a programming tutorial designed for beginners to learn about the list container.
Part Two:
• Python Programming Tutorial: Introduc...
Part Three:
• Python Programming Tutorial: Introduc...