In this Python tutorial, we will look at the break statement and how to use the break statement in Python. The break statement is used to immediately exit us out of a while loop or for loop. When a break statement is reached in a loop the code proceeding the break statement in a loop will not run. There is no better way to learn how to use the break statement than trying it out.