Q. What is the output of the following?
Code:
elements = [0, 1, 2] def incr(x): return x+1 print(list(map(elements, incr)))
β
Correct Answer: (C)
error
elements = [0, 1, 2] def incr(x): return x+1 print(list(map(elements, incr)))
You must be Logged in to update hint/solution