how to delete dictionary elements using key in python code example
Example 1: python delete key from dictionary
>>>
>>> person1_information = {'city': 'San Francisco', 'name': 'Sam', "food": "shrimps"}
>>>
>>> del person1_information["food"]
>>>
>>> print(person1_information)
{'city': 'San Francisco', 'name': 'Sam'}
Example 2: delete key from python dictionary
dictionary.pop(key)
Example 3: python delete value from dictionary
dict = {'an':30, 'example':18}
del dict['an']
dict.pop('example')
dict.pop('test', 'Key not found')