0
Can someone help me with this ๐ฎ
x=0 ____=<20__ ____(x) x+=2
5 Answers
+ 2
while x
:
print
0
This looks like a while loop.. That keeps running until x is equal (or higher) than 20. The last row (x+=2) adds 2 to x before it starts over.
Try:
while x <= 20:
print(x)
x+=2
0
x = 0
while x =< 20:
print(x)
0
kk thnks @jj fer
0
thanks so much mathias