**TI83F*

Created by TI-Smartview CE 5.4.0.1858     F 5C10X123P  53PYCD"10_Indice_Tlespe_ex123_corrige.py from math import *
def somme():
    S=0
    x=-1
    h=0.2
    for i in range(1,6):
        x=x+h
        S=S+h*exp(x)
    return(S)

def somme(n):
    S=0
    x=-1
    h=1/n
    for i in range(1,n+1):
        x=x+h
        S=S+h*exp(x)
    return(S)êM