What will be the output of the following Python code?

lst = [1, 2, 3]
lst[3]

a) NameError
b) ValueError
c) IndexError
d) TypeError

1 thought on “What will be the output of the following Python code?”

  1. c
    Explanation: The snippet of code shown above throws an index error. This is because the index of the list given in the code, that is, 3 is out of range. The maximum index of this list is 2.

Leave a Comment