I am very new. Just working my way through a online lesson a friend suggested (kaggle) and been doing good so far tonight till i hit elifs. since it wasn't working i even tried copy/pasting theirs to see if it would owrk and it isnt.
def evaluate_temp_with_elif(temp):
if temp > 38:
message = "Fever!"
elif temp > 35:
message = "Normal temperature."
else:
message = "Low temperature."
return message
evaluate_temp_with_elif(36)
this keeps returning a blank. I think i broke visual studio again because last time i came here that was the problem lol