There was an error while loading. Please reload this page.
1 parent a4d1ec1 commit 1593256Copy full SHA for 1593256
exceptions.rst
@@ -5,9 +5,11 @@ Exception handling is an art which once you master grants you immense
5
powers. I am going to show you some of the ways in which we can handle
6
exceptions.
7
8
-In basic terminology we are aware of ``try/except`` clause. The code
9
-which can cause an exception to occur is put in the ``try`` block and
+In basic terminology we are aware of the ``try/except`` structure. The code
+that can cause an exception to occur is put in the ``try`` block and
10
the handling of the exception is implemented in the ``except`` block.
11
+The code in the ``except`` block will only execute if the ``try`` block
12
+runs into an exception.
13
Here is a simple example:
14
15
.. code:: python
0 commit comments