What is the value of list(enumerate(["a", "b"])) when no start argument is supplied?
Explanation
Enumerate pairs each item with a counter and begins that counter at zero unless a different start is provided. Beginning at one is a common convention in prose, but it is not the function's default.