I have this code:
charlie = {"animal_kind":"german shepherd","owner's_name":"cory", }
lucy = {"animal_kind":"cat", "owner's_name":"oliver"}
george = {"animal_kind":"ferret", "owner's_name":"stephy"}
pets = [charlie, lucy, george]
I want to loop through each dictionary and print the dictionary's name (not the keys or values in the dictionaries). Is there a way to do that?