Computer Science, asked by deepaksinoy, 4 months ago

for num in range(2, 10):

if num % 2 == 0:

print("Found an even number", num)

continue

print("Found a number", num) rewrite using loop

Answers

Answered by jai696
5

\large\mathsf\color{pink}{Solution\: using\: python\: 3}

num = 2

while num < 10:

if num % 2 == 0:

print("Found an even number", num)

num += 1

\large\mathsf\color{lightgreen}useful?\: \color{white}\longrightarrow\: \color{orange}brainliest!

Similar questions