kuroko/test/testRuntimeException.krk

9 lines
124 B
Python

import time
try:
time.sleep()
except as exception:
print("oh no! " + exception.arg)
print("Back from try/except")