Correct the error and write output. (Python)
a-10
while a<20;
prit (a+2)
a=+2
Answers
Answered by
0
Answer:
a = 10
while a < 20:
print (a + 2)
a += 2
Output is
12
14
16
18
20
Similar questions