filmov
tv
Chapter 8 - Lists in Python
![preview_player](https://i.ytimg.com/vi/9ndZ_hE57XI/maxresdefault.jpg)
Показать описание
A list is an ordered and mutable Python container, being one of the most common data structures in Python. To create a list, the elements are placed inside square brackets ([]), separated by commas. List items can be of any data type. Lists are created using square brackets. List items are ordered, changeable, and allow duplicate values.
List items are indexed, the first item has index [0], the second item has index [1] etc.
List items are indexed, the first item has index [0], the second item has index [1] etc.