kuroko/test/testRuntimeException.krk

9 lines
124 B
Python
Raw Permalink Normal View History

2021-01-04 15:44:16 +03:00
import time
2020-12-29 05:00:12 +03:00
try:
2021-01-04 15:44:16 +03:00
time.sleep()
except as exception:
print("oh no! " + exception.arg)
2020-12-29 05:00:12 +03:00
print("Back from try/except")