Answers for "remove key dict pyhton"

1

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
1

remove dict python

del r[key]
Posted by: Guest on February-12-2021

Python Answers by Framework

Browse Popular Code Answers by Language