Solution: Skip Even Numbers
We'll cover the following...
We'll cover the following...
This program prints all odd numbers from 1 to 10 using a for loop and the continue statement.
for number in range(1, 11):if number % 2 == 0:continueprint(number)
...