Python - Advanced Exception Handling
Find the error in this code:
def validate_score(score):
if score > 100:
raise ValueError, 'Score too high'
return score
validate_score(150)