Answers for "delete entry from dict python"

2

python remove key from dict

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

python delete value from dictionary

dict.pop('key')

#optionally you can give value to return if key doesn't exist (default is None)
dict.pop('key', 'key not found')
Posted by: Guest on May-25-2020

Python Answers by Framework

Browse Popular Code Answers by Language