Use the get
method to print the value of the "model" key of the car
dictionary.
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(@(16))
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(car.get("model"))
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
print(car.get('model'))