Source Code:
(back to article)
my_dict = {'a': 1, 'b': 2, 'c': 3} del my_dict['b'] print(my_dict) # {'a': 1, 'c': 3}
Result:
Report an issue