Menu
×
×
Correct!
Exercise:Add the key/value pair "color" : "red" to the
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
@(12) @(1) @(5)
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
car["color"] = "red"
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
car['color'] = 'red'
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
car["color"] = 'red'
car = {
"brand": "Ford",
"model": "Mustang",
"year": 1964
}
car['color'] = "red"
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 95 exercises.
Are you sure you want to continue?