Q. What does the `enumerate()` function do?
β
Correct Answer: (B)
Returns index and value pairs from an iterable
Explanation: `enumerate()` returns both index and item while looping through an iterable.