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()
|
2023-11-25 05:11:56 +03:00
|
|
|
except as exception:
|
2021-01-04 17:33:43 +03:00
|
|
|
print("oh no! " + exception.arg)
|
2020-12-29 05:00:12 +03:00
|
|
|
|
2021-01-04 17:33:43 +03:00
|
|
|
print("Back from try/except")
|