Back Navigation Next Navigation Video 6: Lists Tuples Dictionaries (page 12 of 14)

We may remove a specific key: value pair from a dictionary by using pop() and passing in the key. We may also use popitem() to remove the last key: value pair from the dictionary. Finally, we may use clear() to remove all key: value pairs from the dictionary.

Dictionaries