Python - Advanced Exception Handling
What will happen when this code runs?
def check(num):
assert num != 0, 'Number cannot be zero'
return 10 / num
print(check(0))