Untitled
Anonymous
plain_text
12/23/2024 5:25 AM
376 B
21
Indexable
count=0
count=count+1
def plus_dix(c):
i=0
while(i < 10): #incrementer jusqua 10 le i et le c
i=i+1
c=c+1
return c #retourner la variable modifier
print(count)
count2 = plus_dix(count)
print(count2)
Editor is loading...
Leave a Comment