Python学习记录(一)

# 当 x=0,1,2,3时 找出 f(x) = -5 * x**5 + 69 * x**2 - 47 的最大值

import math

def quadratic(x, a, b, c):
    
# 创建函数方程

    f = a * x**5 + b * x**2 + c
    return f

# 打印出来各自的值 比较大小

print quadratic(0, -5, +69, -47)
print quadratic(1, -5, +69, -47)
print quadratic(2, -5, +69, -47)
print quadratic(3, -5, +69, -47)


CodesKulptor地址:http://www.codeskulptor.org/#user38_mqXWh4bRRe_0.py



你可能感兴趣的:(python)