Break and Continue Statement Activity
Write a loop that print 1 to 100 but escapes number 10, 20, 30, 40, 50, 60, 70, 80, and 9.
Answers
Answered by
0
Answer:
for i in range (1, 100):
if (i % 10) ==0:
continue
print (i)
Similar questions