Answers for "how to remove key from dict python"

4

delete a key value pair from a dictionary in python

mydict = {'score1': 41, 'score2': 23, 'score3': 45}

del mydict['score2']
print(mydict)
{'score1': 41, 'score3': 45}
Posted by: Guest on May-14-2020
2

python remove key from dict

my_dict.pop('key', None)
Posted by: Guest on September-03-2020
3

remove keys from dict python

''' 
Deleting an entry from dictionary using del 
'''
# If key exist in dictionary then delete it using del.
if "at" in wordFreqDic:
    del wordFreqDic["at"]
    
print("Updated Dictionary :" , wordFreqDic)      
Posted by: Guest on May-04-2020

Code answers related to "how to remove key from dict python"

Python Answers by Framework

Browse Popular Code Answers by Language