Spaces:
Sleeping
Sleeping
File size: 5,591 Bytes
e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd cb50f45 e9ef2cd |
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 |
# /// script
# requires-python = ">=3.10"
# dependencies = [
# "marimo",
# ]
# ///
import marimo
__generated_with = "0.10.19"
app = marimo.App()
@app.cell(hide_code=True)
def _(mo):
mo.md(
"""
# π‘οΈ Handling errors
Sometimes things go wrong in programs. When that happens, Python raises `exceptions` to tell you what went amiss. For example, maybe you divided by 0:
"""
)
return
@app.cell
def _():
1 / 0
return
@app.cell(hide_code=True)
def _(mo):
mo.md(
"""
That's a lot of red! The outputs above are Python telling you that
something went wrong β in this case, we tried dividing a number by 0.
Python provides tools to catch and handle exceptions: the `try/except`
block. This is demonstrated in the next couple cells.
"""
)
return
@app.cell
def _():
# Try changing the value of divisor below, and see how the output changes.
divisor = 0
return (divisor,)
@app.cell
def _(divisor):
try:
print(1 / divisor)
except ZeroDivisionError as e:
print("Something went wrong!", e)
return
@app.cell(hide_code=True)
def _(mo):
mo.md(
"""
Python has many types of Exceptions besides `ZeroDivisionError`. If you
don't know what kind of exception you're handling, catch the generic
`Exception` type:
```python
try:
...
except Exception:
...
```
"""
)
return
@app.cell(hide_code=True)
def _(error_types):
error_types
return
@app.cell(hide_code=True)
def _(mo):
# Choose error type
error_types = mo.ui.dropdown(
value="ZeroDivisionError",
options=[
"ZeroDivisionError",
"TypeError",
"ValueError",
"IndexError",
"KeyError"
],
label="Learn about ..."
)
return (error_types,)
@app.cell(hide_code=True)
def _(error_types, mo):
# Error explanation
error_explanations = {
"ZeroDivisionError": """
### π« ZeroDivisionError
- Occurs when you try to divide by zero
- Mathematical impossibility
- Example:
```python
x = 10 / 0 # Triggers ZeroDivisionError
```
""",
"TypeError": """
### π TypeError
- Happens when an operation is applied to an inappropriate type
- Mixing incompatible types
- Example:
```python
"2" + 3 # Can't add string and integer
```
""",
"ValueError": """
### π ValueError
- Raised when a function receives an argument of correct type
but inappropriate value
- Example:
```python
int("hello") # Can't convert non-numeric string to int
```
""",
"IndexError": """
### π IndexError
- Occurs when trying to access a list index that doesn't exist
- Going beyond list boundaries
- Example:
```python
my_list = [1, 2, 3]
print(my_list[5]) # Only has indices 0, 1, 2
```
""",
"KeyError": """
### ποΈ KeyError
- Raised when trying to access a dictionary key that doesn't exist
- Example:
```python
my_dict = {"a": 1, "b": 2}
print(my_dict["c"]) # "c" key doesn't exist
```
"""
}
mo.md(error_explanations.get(error_types.value, "Select an error type"))
return (error_explanations,)
@app.cell(hide_code=True)
def _(mo):
mo.md(
"""
## Handling multiple exception types
Catch and handle different types of errors specifically:
```python
def complex_function(x, y):
try:
# Potential errors: TypeError, ZeroDivisionError
result = x / y
return int(result)
except TypeError:
return "Type mismatch!"
except ZeroDivisionError:
return "No division by zero!"
except ValueError:
return "Conversion error!"
finally:
# The `finally` block always runs, regardless if there
# was an error or not
...
```
"""
)
return
@app.cell(hide_code=True)
def _(finally_input):
finally_input
return
@app.cell(hide_code=True)
def _(mo):
# Finally Block Demonstration
finally_input = mo.ui.switch(
label="Throw an error?",
value=True
)
return (finally_input,)
@app.cell
def _(finally_input, mo):
def simulate_resource_management():
try:
# Simulating a resource-intensive operation
if not finally_input.value:
return "π’ Resource processing successful"
else:
raise Exception("Simulated failure")
except Exception as e:
return f"π΄ Error: {e}"
finally:
return "π¦ Resource cleanup completed"
_result = simulate_resource_management()
mo.md(f"""
### Example: the finally clause
**Scenario**: {"Normal operation" if not finally_input.value else "An exception was raised"}
**Result**: {_result}
Notice how the `finally` block always runs, ensuring cleanup!
""")
return (simulate_resource_management,)
@app.cell
def _():
import marimo as mo
return (mo,)
if __name__ == "__main__":
app.run()
|