Home / Python Loops / How to Stop Current Iteration of Loop in Python In this example we will show how to stop the current iteration of the loop and continue with the next in Python. Source Code str = 'abcdc' for x in str: if x == 'c': continue print(x) Output: a b d