Python - Exception Handling Fundamentals
What will be the output of this code?
try:
numbers = [1, 2, 3]
print(numbers[5])
except IndexError:
print('Index error caught')