diff options
author | Martin Fischer <martin@push-f.com> | 2022-02-25 08:02:46 +0100 |
---|---|---|
committer | Martin Fischer <martin@push-f.com> | 2022-02-25 08:24:47 +0100 |
commit | cab35e3dfd2fa2d41a045b79e9c247ddcd84cf52 (patch) | |
tree | 0b31080d54c347575962ce6621a604b437514e12 /puzzles/20_try_except_finally.py | |
parent | 232e804c851322c825b5f0e627ca86b4db7d639f (diff) |
move control flow puzzles before typing puzzles
Diffstat (limited to 'puzzles/20_try_except_finally.py')
-rw-r--r-- | puzzles/20_try_except_finally.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/puzzles/20_try_except_finally.py b/puzzles/20_try_except_finally.py new file mode 100644 index 0000000..d63ab10 --- /dev/null +++ b/puzzles/20_try_except_finally.py @@ -0,0 +1,8 @@ +def foo() -> None: + file = None + try: + file = open('test.json') + except Exception: + return None + finally: + file.name # error |