这是我在python中的公式
实现数学函数 f(x) = -5 x5 + 69 x2 - 47
定义数学函数
def math_formula(x):
# This is the formula
math_formula = -5 * (x**5) + 69 *(x**2) - 47
return math_formula
打印我们范围内的值
for value in range (0,4):
print 'For f(',(value),')', 'the number is:' , math_formula(value)
print ''
print ('The the maximum of these four numbers is:'), max(math_formula(value))
该函数返回 f(0) 到 f(3) 的所有数字。
有人可以回答以下问题:为什么此打印不返回最大数量?
print ('The the maximum of these four numbers is:'), max(math_formula(value))
它返回范围内较大的负数。我不知道如何返回最大正数。如何返回最大正数。