Q. What is the output of the following code?
Code:
list(enumerate([‘a’,’b’,’c’,’d’,’e’],100))[0][0]
β
Correct Answer: (A)
100
list(enumerate([‘a’,’b’,’c’,’d’,’e’],100))[0][0]
You must be Logged in to update hint/solution