python | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

21st Feb 2018, 10:10 AM
indumathi g
3 Answers
+ 11
x=0 while(x<=20) : print (x) x+=2
21st Feb 2018, 10:58 AM
๐ŸŒ›DT๐ŸŒœ
๐ŸŒ›DT๐ŸŒœ - avatar
+ 3
Donโ€™t post these in Q&A, it would be good for quiz factory though.
21st Feb 2018, 12:39 PM
Jacob Pembleton
Jacob Pembleton - avatar
0
give answer
21st Feb 2018, 10:13 AM
indumathi g