Computer Science, asked by harjitkaurbti7, 4 months ago

Correct the error and write output. (Python)

a-10

while a<20;

prit (a+2)

a=+2​

Answers

Answered by madhalaimuthucharlas
0

Answer:

a = 10

while a < 20:

print (a + 2)

a += 2

Output is

12

14

16

18

20

Similar questions