#in Python, break statements can be used to break out of a loop for x in range(5): print(x * 2) if x > 3: break