0
python
Fill in the blanks to create a loop that increments the value of x by 2 and prints the even values. x = 0 x <=20 (x) x += 2
3 Respostas
+ 11
x=0
while(x<=20) :
print (x)
x+=2
+ 3
Don’t post these in Q&A, it would be good for quiz factory though.
0
give answer