partie1_ex48_1.py

Created by cahier-indice-algo-1techno

Created on April 22, 2022

96 Bytes


def somme(L):
    s = 0
    for elt in L:
        s = s + elt
    return s