Python try Except Else - try block - it contains code that might throw an exception. - except block - it contains error handling code which is to be executed if exceptions are not raised. - else block- it is an optional block, it will run if an exception is not raised in try block, allows to add additional code if exceptions are not raised.














