I want to pass this step

Sorry, what I should put in if, elif o pass this step

ef greater_less_equal_5(answer):
if -----:
return 1
elif —:
return -1
else:
return 0

print greater_less_equal_5(4)
print greater_less_equal_5(5)
print greater_less_equal_5(6)

the answer is in the function name. i.e if answer is greater than 5, answer is less than 5 , or answer is equal to 5.

2 Likes

u solved that, Thanks a lot

1 Like

You are welcome. Glad I could help.

1 Like