...loop if the <condition> is met.
##How to Use the Break Statement in Python
The break statement can be used in both while and for loops.
###Using the break statement in a while loop
To use the break statement in a while loop, you can simply add it inside the loop body. For example:
```...