Del KeywordDel Keyword

In a dictionary, you can remove keys using the del keyword. With it, you can delete specific entries or even the entire dictionary. Here's how you can do it:

Task

Consider this dictionary:

{'country_1': 'India', 'country_2': 'Latvia', 'country_3': 'Panama', 'country_4': 'Serbia'}

Your goal is to modify it to look like this:

{'country_2': 'Latvia', 'country_3': 'Panama'}

Everything was clear?

Section 2. Chapter 6
toggle bottom row