Py répéter jusqu'à
// Will repeat until x is greater than 5
x = 0
while x <= 5:
print(x)
x+=1
Bob7012
// Will repeat until x is greater than 5
x = 0
while x <= 5:
print(x)
x+=1