Today we are going to share a How to remove the given key from a dictionary in Python. If you are a python beginner and want to start learning the python programming, then keep your close attention in this tutorial as I am going to share a How to remove the given key from a dictionary in Python.
Copy the below python program and execute it with the help of python compiler.
1 2 3 4 5 6 7 8 9 10 11 |
d = {'a':1,'b':2,'c':3,'d':4} print("Initial dictionary") print(d) key=raw_input("Enter the key to delete(a-d):") if key in d: del d[key] else: print("Key not found!") exit(0) print("Updated dictionary") print(d) |
To increase your Python knowledge, practice all Python programs, here is a collection of 100+ Python problems with solutions.
If you like FreeWebMentor and you would like to contribute, you can write an article and mail your article to [email protected] Your article will appear on the FreeWebMentor main page and help other developers.