Which of these statements create a dictionary?

person = {"age": 17, "name": "Marty"}country = {"name": "United States"}coordinates = (47.8095, 13.0550)address = ["street": 23, "name": "Michael"]

Very good! We use braces to create dictionaries and separate their keys and values with colons.

Almost! We use braces to create dictionaries and separate their keys and values with colons.