Dictionaries Flashcards
1
Q
.keys()
A
See all the keys of a dictionary
2
Q
.values()
A
See all the values stored in a dictionary
3
Q
.items()
A
See all keys paired with their values stored in a dictionary
.keys()
See all the keys of a dictionary
.values()
See all the values stored in a dictionary
.items()
See all keys paired with their values stored in a dictionary