which statement will remove 5:softball from the dictionary? sports = {2:football, 3:soccer, 4:volleyball…

which statement will remove 5:softball from the dictionary? sports = {2:football, 3:soccer, 4:volleyball, 5:softball} sports.pop(5) sports.pop() sports.remove(softball) sports.remove()
Answer
Brief Explanations:
In Python, the pop() method on a dictionary removes and returns the item with the specified key. Here, the key is 5 for the 'softball' item, so sports.pop(5) will remove it. The pop() method without an argument tries to remove and return the last inserted key - value pair (in Python 3.7+ where insertion - order is preserved). The remove() method is not a valid method for dictionaries in Python.
Answer:
sports.pop(5)