Python Exercises for Beginners: Loop Control Statements (break, continue, pass)
- Write a Python program that runs an infinite loop using a while statement. Include a way to exit the loop by using the break statement.
- Write a Python program using the continue statement in a loop to skip specific iterations, such as skipping over the numbers 0, 1, 2, and 4?