Menu
×
×
Correct!
Exercise:Use the
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(car.get("model"))
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(car.get('model'))
Not CorrectClick here to try again. Correct!Next ❯car = { "brand": "Ford", "model": "Mustang", "year": 1964 } print() |