-2
def greater_less_equal_5(answer):
if answer > 5:
return 1
elif answer < 5:
return -1
else:
return 0
print greater_less_equal_5(4)
print greater_less_equal_5(5)
print greater_less_equal_5(6)
これらの数字は何ですか:4,5,6は何を意味し、印刷の終わりにありますか?これらはどういう意味ですか?
4,5,6がそれぞれ関数に渡され、関数に返される値が画面に出力されます。機能の詳細については、https://www.tutorialspoint.com/python/python_functions.htmを参照してください。 –
@RohinGopalakrishnan OPのケースでは、 'print'は関数ではない文です。 Python 3.xでは関数に変更されました。 –