Write a program to print all the even numbers between 13 and 31 using Do...Until loop
Answers
Answered by
0
Answer:
For i in range(13,32):
If i%2==0:
Print (i)
Similar questions