Python - Advanced Exception Handling
What will be the output of this code?
def check_age(age):
assert age >= 18, "Age must be at least 18"
return "Access granted"
print(check_age(20))
print(check_age(16))