This commit is contained in:
GZod01 2024-03-20 15:11:56 +01:00
parent 2b9deb6f65
commit 99a25e8c25

12
list.py
View file

@ -1,12 +0,0 @@
def calcul_suite(n):
res1 = [1];
for i in range(n):
res2 = 0;
for j in res1:
res2+=j;
res2+=1;
res1.append(res2);
return res1[n-1];