⟩ Do you know what Are The Optional Statements That Can Be Used Inside A <Try-Except> Block In Python?
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 any 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.