def f(x): y=x**2 return y def Taux(a,h): t=(f(a+h)-f(a))/h return t