✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
books_read = {"Ali": 3, "Sara": 5, "Omar": 2}
books_read["Omar"] += 1
print(books_read["Omar"])
What is the output when the code is executed?