Introduction
In this lab, we will learn how to use while loop statements, break statements, and continue statements in Python. These control structures allow us to write code that can repeat a block of statements, or skip certain statements within a loop, or exit a loop early.
Achievements
- while Loop Statements
- break Statements
- continue Statements



