From 861ab4f466c4fcc54cae13545290c9a54e7e28e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 29 Dec 2018 15:38:35 +0100 Subject: [PATCH] Exceptions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 493d916..70e04b0 100644 --- a/README.md +++ b/README.md @@ -809,12 +809,12 @@ while True: break ``` -#### Raising exception: +### Raising Exceptions ```python raise ValueError('A very specific message!') ``` -#### Finally: +### Finally ```python >>> try: ... raise KeyboardInterrupt