Understand the fundamental differences and uses of Lists, Tuples, and Dictionaries
Learn to create, access and manipulate these data types
Understand when and why to use each type
Lists
Tuples
Dictionaries
Imagine you have a toolbox that can expand to hold as many tools as you want. That's what a list in Python is like. In this section, we'll learn how to create, access, and manipulate lists.
Tuples are like the toolbox that's bolted to the wall, sturdy and unchanging. In this section, we'll explore the benefits and uses of this immovable but dependable data type.
What if your toolbox could tell you exactly where every tool is? That's a dictionary in Python. This section covers the creation, access, and manipulation of this 'smart' data type.