- Raises `ValueError` with the message `f"age out of range: {age}"` body: "Function body: `if age < 0 or age > 120: raise ValueError(...)` then `return age`. Then a loop or three explicit `try/except` ...
triggers a `raise`. What does this print? (Three lines, in order.) body: "First and third tokens skip the `if`, hit the `return`, print the success line. Middle one raises and gets caught." - level: 2 ...