-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtry_except.py
More file actions
266 lines (213 loc) · 6.88 KB
/
Copy pathtry_except.py
File metadata and controls
266 lines (213 loc) · 6.88 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
"""
Module: try_except.py
Topic: Try-Except Exception Handling
Level: Intermediate
This file teaches you about:
- Basic try-except
- Multiple exceptions
- finally and else clauses
- Exception information
- Best practices
"""
# =============================================================================
# SECTION 1: BASIC TRY-EXCEPT
# =============================================================================
print("=" * 60)
print("BASIC TRY-EXCEPT")
print("=" * 60)
# Simple exception handling
try:
result = 10 / 0
except ZeroDivisionError:
print(" Cannot divide by zero!")
# Catching the exception object
try:
result = 10 / 0
except ZeroDivisionError as e:
print(f" Error: {e}")
print(f" Type: {type(e).__name__}")
# =============================================================================
# SECTION 2: MULTIPLE EXCEPTIONS
# =============================================================================
print("\n" + "=" * 60)
print("MULTIPLE EXCEPTIONS")
print("=" * 60)
def divide(a, b):
"""Divide two numbers with exception handling."""
try:
return a / b
except ZeroDivisionError:
print(" Cannot divide by zero!")
return None
except TypeError:
print(" Invalid types!")
return None
print(f"divide(10, 2) = {divide(10, 2)}")
print(f"divide(10, 0) = {divide(10, 0)}")
print(f"divide('10', 2) = {divide('10', 2)}")
# Multiple exceptions in one block
try:
value = int("abc")
except (ValueError, TypeError) as e:
print(f"\n Caught: {type(e).__name__}: {e}")
# Catching all exceptions (use sparingly!)
try:
result = 10 / 0
except Exception as e:
print(f"\n Caught exception: {e}")
# =============================================================================
# SECTION 3: ELSE AND FINALLY
# =============================================================================
print("\n" + "=" * 60)
print("ELSE AND FINALLY CLAUSES")
print("=" * 60)
# else: runs if no exception occurred
# finally: always runs
def safe_divide(a, b):
"""Divide with complete exception handling."""
try:
result = a / b
except ZeroDivisionError:
print(" Division by zero!")
return None
except TypeError:
print(" Invalid types!")
return None
else:
print(" Division successful!")
return result
finally:
print(" Cleanup complete.")
print("safe_divide(10, 2):")
safe_divide(10, 2)
print("\nsafe_divide(10, 0):")
safe_divide(10, 0)
# =============================================================================
# SECTION 4: EXCEPTION INFORMATION
# =============================================================================
print("\n" + "=" * 60)
print("EXCEPTION INFORMATION")
print("=" * 60)
import sys
import traceback
try:
result = 10 / 0
except ZeroDivisionError:
exc_type, exc_value, exc_traceback = sys.exc_info()
print(f" Exception type: {exc_type.__name__}")
print(f" Exception value: {exc_value}")
print(f" Traceback: {exc_traceback}")
# Using traceback module
try:
def inner():
return 10 / 0
inner()
except ZeroDivisionError:
print("\n Traceback (formatted):")
traceback.print_exc()
# =============================================================================
# SECTION 5: RAISING EXCEPTIONS
# =============================================================================
print("\n" + "=" * 60)
print("RAISING EXCEPTIONS")
print("=" * 60)
def validate_age(age):
"""Validate age with custom exceptions."""
if not isinstance(age, int):
raise TypeError("Age must be an integer")
if age < 0:
raise ValueError("Age cannot be negative")
if age > 150:
raise ValueError("Age seems unrealistic")
return age
try:
validate_age(-5)
except ValueError as e:
print(f" Validation error: {e}")
# Re-raising exceptions
try:
try:
result = 10 / 0
except ZeroDivisionError:
print(" Logging the error...")
raise # Re-raise the same exception
except ZeroDivisionError:
print(" Caught re-raised exception")
# =============================================================================
# SECTION 6: EXCEPTION CHAINING
# =============================================================================
print("\n" + "=" * 60)
print("EXCEPTION CHAINING")
print("=" * 60)
def load_config(filename):
"""Load configuration from file."""
try:
with open(filename, 'r') as f:
return f.read()
except FileNotFoundError as e:
raise RuntimeError(f"Config file not found: {filename}") from e
try:
load_config("nonexistent.txt")
except RuntimeError as e:
print(f" Error: {e}")
print(f" Cause: {e.__cause__}")
# =============================================================================
# SECTION 7: BEST PRACTICES
# =============================================================================
print("\n" + "=" * 60)
print("BEST PRACTICES")
print("=" * 60)
BEST_PRACTICES = """
1. BE SPECIFIC
- Catch specific exceptions, not bare except:
- Good: except ValueError:
- Bad: except: (catches everything including KeyboardInterrupt)
2. DON'T SILENCE ERRORS
- At least log the error
- Bad:
try:
do_something()
except:
pass # Silently ignores all errors!
3. USE FINALLY FOR CLEANUP
- Close files, connections, etc. in finally block
4. KEEP TRY BLOCKS SMALL
- Only wrap code that might raise exceptions
- Makes debugging easier
5. PROVIDE HELPFUL ERROR MESSAGES
- Include context in error messages
6. USE CUSTOM EXCEPTIONS
- Create your own exception classes for clarity
"""
print(BEST_PRACTICES)
# =============================================================================
# SECTION 8: COMMON EXCEPTIONS
# =============================================================================
print("\n" + "=" * 60)
print("COMMON BUILT-IN EXCEPTIONS")
print("=" * 60)
COMMON_EXCEPTIONS = """
Exception Description
--------- -----------
ValueError Invalid value for operation
TypeError Wrong type for operation
KeyError Key not found in dictionary
IndexError Index out of range
FileNotFoundError File doesn't exist
ZeroDivisionError Division by zero
AttributeError Attribute doesn't exist
ImportError Module import failed
RuntimeError Generic runtime error
StopIteration End of iterator
PermissionError Insufficient permissions
TimeoutError Operation timed out
"""
print(COMMON_EXCEPTIONS)
# =============================================================================
# MAIN EXECUTION
# =============================================================================
if __name__ == "__main__":
print("\n" + "=" * 60)
print("✅ You've learned exception handling!")
print("📚 Next: Learn about custom exceptions")
print("=" * 60)