Dictionary Practice
Computers,Science
- Q. What data type is this?
quiz =
{"How are you? ":"fine",
"What is your name? ":"Mert"
}
- Q. Which symbol surrounds a dictionary?
- Q. To delete, key value pair in dictionary use .........
- Q. car = { "brand": "Ford", "model": "Mustang", "year": 1964 }
print()
print the value of the "model" key of the car dictionary.
OPEN