Comment créer une fonction cubique dans Python 3
def f(x):
return 3*x**3 + 2*x**2 + 7*x + 1
Old-fashioned Ocelot
def f(x):
return 3*x**3 + 2*x**2 + 7*x + 1