Joseph Loves Python
try: result = 10 / 0 except ZeroDivisionError: result = "error" finally: result = "done" print(result)
1 year ago | [YT] | 1
Joseph Loves Python
try:
result = 10 / 0
except ZeroDivisionError:
result = "error"
finally:
result = "done"
print(result)
1 year ago | [YT] | 1