question # 5\nmultiple choice\nwhich statement adds a new item to a dictionary?\n○ books.append((5:2))\n○…

question # 5\nmultiple choice\nwhich statement adds a new item to a dictionary?\n○ books.append((5:2))\n○ books.insert((5:2))\n○ books.update((5:2))\n○ books.add((5:2))
Answer
Brief Explanations:
In Python, the update method is used to add new key - value pairs (items) to a dictionary. The append method is for lists, insert is also for lists to insert an element at a specific position, and there is no add method for dictionaries in the way shown.
Answer:
books.update({5:2})