Computer Science, asked by BrainlySecurityIndia, 1 month ago

Solve the python question that follows.

Attachments:

Answers

Answered by ArnavKrishna24
1

i = 10

while i < 20:

   if (i%2 == 0):

       print(i)

   i = i + 1

Brainliest please

Answered by charan555
1

Explanation:

while ( x>=10 and x<20) :

if (x%2==0):

print(x)

Similar questions