

0 / 2 embers
0 / 3000 xp
click for more info
Complete a lesson to start your streak
click for more info
Difficulty: 3
click for more info
Not enough gems
Cost: 6 gems
1: Introduction to Data Structures
incomplete
2: What Are Data Structures?
incomplete
3: Lists
incomplete
4: Lists Quiz
incomplete
Back
ctrl+,
Next
ctrl+.
This lesson's interactive features are locked, please to keep using them
A data structure is a data organization, management, and storage format that enables efficient access and modification. More precisely, a data structure is a collection of data values, the relationships among them, and the functions or operations that can be applied to the data.
In other words, a data structure:
You're already familiar with some of Python's built-in, simple data structures:
List: An ordered collection of items
animals = ["cat", "dog", "mouse"]
Dictionary: Collections of key/value pairs
car = {"brand": "Ford", "model": "Mustang", "year": 1964}