Python - Advanced Exception Handling
Find the error in this code:
def validate(x):
assert x > 10, 'x must be greater than 10'
print('Valid')
validate(5)