Python: Intro to Lists
October 12, 2019
Lists are a mutable reference data type in Python. Mutable
means its data can be changed. Reference
means it doesn’t store data directly; instead it stores a reference (or pointer) to the actual data in memory). This video gives a brief overview of Lists in Python and how lists can be created, accessed, and iterated.