What is the optional statement used in a try except statement in Python?

Submitted by: Administrator
There are two optional clauses used in try except statements:

1. Else clause: It is useful for code that must be executed when the try block does not create any exception

2. Finally clause: It is useful for code that must be executed irrespective of whether an exception is generated or not.
Submitted by: Administrator

Read Online Python Job Interview Questions And Answers