Home / Python Loops / How to Stop Loop Even If While Condition Is True in Python In this example we will show how to stop the loop even if the while condition is true in Python. Source Code a = 3 while a > 0: print(a) if a == 15: break a += 4 Output: 3 7 11 15