def Suite (n):
    L=[]
    u=-1
    for i in range (n):
        L=L+[u]
        u=-1.4*u-3
    return(L)

print(Suite(5))




  (ou L.append(u) )



Embed on website

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