Home »
Python »
Python Dictionary MCQs
Which method is an alternative method to remove the particular item from python?
22. Which method is an alternative method to remove the particular item from python?
- pop()
- delete()
- delete_all()
- clear()
Answer: A) pop()
Explanation:
The pop() can be also used to delete a particular element.