def somme(L) :
    L=[0,1,2,3]
    n=len(L)
    S=0
    for i in range(n) :
        S+=L[i]
    print(S)
    

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: