Python by Swaroop C H - HTML preview

PLEASE NOTE: This is an HTML preview only and some elements such as links or page numbers may be incorrect.
Download the book in PDF, ePub, Kindle for a complete version.

Try..Finally

What if you were reading a file and you wanted to close the file whether or not an exception was raised? This can be done using thefinally block. Note that you can use anexcept clause along with afinally block for the same correspondingtry block. You will have to embed one within another if you want to use both.