+ 3
How can you tell Python 🐍 not to run the final statement if the try statement is true or also ran?
Final statements.
3 Réponses
+ 4
Yh, something like that.
+ 3
You mean `finally` statement?
The lesson says the `finally` block (when present) will be executed whether or not an exception be raised. I guess you can just remove the `finally` block, and use only the `try` and `except`block pair, if you don't want the `finally` block at all.
https://www.sololearn.com/learn/JUMP_LINK__&&__Python__&&__JUMP_LINK/2442/