Use `del my_dict[key]`
Use `my_dict.pop(key)`
Use `my_dict.pop(key, default)`
Use dictionary comprehension to create a new dictionary without the key
Use `my_dict.popitem()` to remove the last inserted key-value pair
Use `del my_dict[key]`
Use `my_dict.pop(key)`
Use `my_dict.pop(key, default)`
Use dictionary comprehension to create a new dictionary without the key
Use `my_dict.popitem()` to remove the last inserted key-value pair