programming-examples/python/Dictionary/Python program to remove a key from a dictionary.py

5 lines
115 B
Python
Raw Normal View History

2019-11-15 12:59:38 +01:00
myDict = {'a':1,'b':2,'c':3,'d':4}
print(myDict)
if 'a' in myDict:
del myDict['a']
print(myDict)