**TI83F*

Created by TI-Smartview CE 5.4.0.1055     Ô  Ã TI4CA15   Ã Á PYCDTI4CA15.py def f(x):
    return x**2

def liste_pentes_secantes(f,a):
    L=[]
    h=1
    while h>0:
        m=(f(a+h)-f(a))/h
        L.append(m)
        h=h-0.01
    return L63