Answer
Index out of bound, will be displayed by the given program
Work Step by Step
Since indexes in python starts from 0, a list of 10 elements will have indexes from 0 to 9, but the program tries to print the element at index 10 which is out of the index range so the try block will throw an error, this will be caught by the except block and Index out of bound will be displayed by that.