This repository has been archived by the owner on Sep 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpractice_8_exceptions.py
144 lines (118 loc) · 3.44 KB
/
practice_8_exceptions.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
"""
Programming 2022
Seminar 8
Working with exceptions
"""
from typing import Optional, Union
# BaseException
# ^ ^ ^
# | | |
# Exception KeyboardInterrupt SystemExit
# ^ ^ ^
# | | |
# ValueError ZeroDivisionError CustomError
# EAFP - easier to ask for forgiveness than for permission - try/except
# LBYL - look before you leap - if/else
# EAFP LBYL
# performance + (-) +
# readability - +
# race conditions + -
# number of checks (few/many) +/- -/+
def compare_lbyl_vs_eafp() -> None:
# LBYL style
dummy_b = []
if len(dummy_b) - 1 > 100:
print(dummy_b[100])
else:
print('No')
# EAFP
try:
dummy_a = {}
dummy_b = []
print(dummy_b[12])
print(dummy_a['key'])
# pylint: disable=unused-variable
except (KeyError, IndexError) as my_error:
print('Error!!')
# pylint: disable=duplicate-except
except IndexError:
print('IndexError!!')
# pylint: disable=bare-except
except: # ~ except BaseException
print('General error!!')
else:
print('iff no exception')
finally:
print('Always!!')
def check_exception_raise() -> None:
# 0: __main__
# 1: main()->__main__
# 2: g()->main()->__main__
# 2: f()->g()->main()->__main__
# 3: g()->main()->__main__
# 4: main()->__main__
# 5: __main__
# 0:
# __main__
# -> main()
# -> g()
# -> f() -> ZeroDivisionError
# 1:
# __main__
# -> main()
# -> g() -> ZeroDivisionError
# -> f()
# 2:
# __main__
# -> main() -> ZeroDivisionError
# -> g()
# -> f()
# 3:
# __main__ -> ZeroDivisionError
# -> main()
# -> g()
# -> f()
# 4:
# -> ZeroDivisionError -> exit!!!
# __main__
# -> main()
# -> g()
# -> f()
# Nested functions only to separate topics from lecture.
# Do not nest functions in your code!
def dummy_f(first: int, second: int) -> float | int:
return first / second
def dummy_g(first: int, second: int) -> float | int:
res = dummy_f(first, second)
print(res)
return res
try:
res = dummy_g(1, 0)
except ZeroDivisionError:
print('Error')
else:
print(res)
def propagate_error_without_exceptions() -> None:
def dummy_f(first: int, second: int) -> float | int:
if second == 0:
return -1
return first / second
def dummy_g(first: int, second: int) -> Optional[Union[float, int]]:
res = dummy_f(first, second)
if res == -1:
return None
print(res)
return res
res = dummy_g(1, 0)
if res is not None:
print(f'Success: {res}')
def main() -> None:
compare_lbyl_vs_eafp()
check_exception_raise()
propagate_error_without_exceptions()
# Railway programming
# ------- OK scenario (return)
# \
# ------- Error scenario (exceptions)
if __name__ == '__main__':
main()