Answer
The code will print following output:
Index out of bound
Finally we are here
Continue
Work Step by Step
In try block the list have 10 elements so the index is from 0 to 9, hence using lst[10] will give IndexError so try block will not be executed and control will move to the except block and Index out of bound will be printed. Else block will not run because an exception was found. Then finally block will be executed and Finally we are here will be printed and then Continue will be printed.