Python Developer Question:

Do you know what Are The Optional Statements That Can Be Used Inside A <Try-Except> Block In Python?

Tweet Share WhatsApp

Answer:

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.

Download Python Developer PDF Read All 77 Python Developer Questions
Previous QuestionNext Question
Tell me what Are Different Ways To Create An Empty NumPy Array In Python?Please write A Reg Expression That Confirms An Email Id Using The Python Reg Expression Module <Re>?