Code: Select all
dictionary_of_car_owners = {"Amber" : "Ford", "Joey" : "Chevy", "Jerry" : "Toyota", "Jane" : "Hyundai"}
print(dictionary_of_car_owners)
# Below is another way to make one.
dictionary_of_basketball_players = dict(Amber = "Tigers", Joey = "Bears", Jane = "Lions")
print(dictionary_of_basketball_players)
