my_car = { "name": "Nexon", "brand": "TATA", "color": "Green" } del my_car['color'] print(my_car)
In the code snippet, we are deleting a a key - color from dictionary - my_car
0 Comments