Python - 13
Python - 13: Dictionaries
Dictionaries store information using keys and values.
👀 Show Example Solution
car = {
"brand": "Tesla",
"model": "Model 3",
"year": 2025
}
print(car)
print(car["brand"])
car["year"] = 2026
print(car["year"])