0 votes
in Python by
What Are The Optional Statements Possible Inside A Try-Except Block In Python?

1 Answer

0 votes
by

There are two optional clauses you can use in the try-except block.

The “else” clause

It is useful if you want to run a piece of code when the try block doesn’t create an exception.

The “finally” clause

It is useful when you want to execute some steps which run, irrespective of whether there occurs an exception or not.

...