admin-dashboard-backend/groupTasks/groups/production1/test1.py

11 lines
223 B
Python

import time
time.sleep(3)
print("hello this is test1")
try:
x = 5 / 0 # Hier wird ein Fehler ausgelöst
except ZeroDivisionError:
print("Ein Fehler ist aufgetreten: Division durch Null.")
raise SystemExit(0)