mirror of
https://github.com/Hizenberg469/Python-tutorial.git
synced 2026-04-19 15:12:22 +03:00
18 lines
404 B
Python
18 lines
404 B
Python
# Error Handling
|
|
|
|
while True:
|
|
try:
|
|
age = int(input('what is your age? '))
|
|
10/age
|
|
except ValueError:
|
|
print('please enter a number')
|
|
continue
|
|
except ZeroDivisionError:
|
|
print('please enter age higher than 0')
|
|
break
|
|
else:
|
|
print('thank you!')
|
|
break
|
|
finally:
|
|
print('ok, I\' finally done')
|
|
print('can you hear me?') |