Answers for "python delete element from dictionary"

5

delete an element from a dict python

del d[key]
Posted by: Guest on February-18-2020
0

remove elements from dictionary python

squares = {1: 1, 2: 4, 3: 9, 4: 16, 5: 25}

# remove a particular item, returns its value
# Output: 16
print(squares.pop(4))
Posted by: Guest on November-07-2020

Code answers related to "python delete element from dictionary"

Python Answers by Framework

Browse Popular Code Answers by Language