Python - Advanced Exception Handling
What will be the output of this code?
def check_positive(num):
if num <= 0:
raise ValueError('Number must be positive')
return num
print(check_positive(-5))