**TI83F*

Created by TI-Smartview CE 5.4.0.1858     Q @C11TP1    @>PYCD11_Indice_TleTechno_TP1.py import matplotlib.pyplot as plt

def Euler():
    
    # Liste des abscisses
    L_x=[0]  
    # Liste des ordonnees
    L_y=[1]
    
    # Réalisation du graphique
    plt.scatter(L_x,L_y,color='red')  
    plt.axis(xmin=0,ymin=0) 

    # Affichage
    plt.show()


a]