Quiz Catalog

Catalog of quizzes

try:
  print(1 / 0)
except:
  raise RuntimeError("Something bad happened")
ZeroDivisionError: division by zero
  • statement/raise
  • statement/try

x = "hello"

if not type(x) is int:
  raise TypeError("Only integers are allowed")
TypeError: Only integers are allowed
  • statement/raise