Untitled
unknown
plain_text
a year ago
282 B
10
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