这些在印刷中意味着什么?

时间:2016-11-12 22:35:56

标签: python

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是否意味着在印刷结束时做什么?

1 个答案:

答案 0 :(得分:2)

它们是传递给函数greater_less_equal_5的参数/参数,作为在该函数体内使用的answer的值。例如,greater_less_equal_5(4)有效地运行此代码:

if 4 > 5:
    return 1
elif 4 < 5:          
    return -1
else:
    return 0

这与print无关。