Well done!
You have completed Function Return Values and Usage Quiz!
Quiz Question 1 of 5
If the following function is modified to include multiple return statements, which scenario would cause the function to return None
?
def evaluate_number(number):
if number > 0:
return "Positive"
elif number < 0:
return "Negative"
return
Choose the correct answer below: