Solve the python question that follows.
Attachments:
Answers
Answered by
1
i = 10
while i < 20:
if (i%2 == 0):
print(i)
i = i + 1
Brainliest please
Answered by
1
Explanation:
while ( x>=10 and x<20) :
if (x%2==0):
print(x)
Similar questions