A for-loop will continue until the condition that it is based upon is met or until it reaches the end of a sequence. Stopping a for-loop ends the loop prematurely and does not complete the remaining iterations.
Solution for How to stop a for loop in Python : You can use break to stop a for loop Use the break statement to prematurely end a for-loop.