Q. How do you iterate over keys and values in a dictionary?
β
Correct Answer: (A)
for k, v in dict.items():
Explanation: `dict.items()` returns key-value pairs for iteration.