Computer Science, asked by parkeunjung95, 2 months ago

write a python program to print even numbers between range 1 to 15 using while loop​

Answers

Answered by samikshamehta
3

Answer:

i=0

while i<=15

i=i+1

print(i)

Similar questions