Мне дали задание вот такое:
"""
Compare the given number with 5 and return message depending on the number's value.
:param num: input number
:return: message regarding the number value compared to five.
"""
Если число больше 5, то должно писать : "The input number is bigger than 5!"
меньше, то "The input number is smaller than 5!"
равно, то "The input number is 5!"
В коде должно быть def comparator(num: float) -> str:
Сколько не пробовал писать, не получается, вот что я писал:
def comparator(num: float) -> str:
"""
Compare the given number with 5 and return message depending on the number's value.
:param num: input number
:return: message regarding the number value compared to five.
"""
a = 5
if a < 5:
print("The input number is bigger than 5!")
elif a > 5:
print("The input number is smaller than 5!")
else:
print("The input number is 5!")
print("The input number is 5!")