break, continue, and pass control loop and block execution.
break — exit loop:
1for i in range(10):2 if i == 5:3 break # Exit loop4 print(i)5# Output: 0, 1, 2, 3, 4
continue — skip iteration:
1for i in range(5):2 if i == 2:3 continue # Skip 24 print(i)5# Output: 0, 1, 3, 4
pass — do nothing (placeholder):
1for i in range(5):2 if i == 2:3 pass # Placeholder4 print(i)5# Output: 0, 1, 2, 3, 467# In class8class FutureFeature:9 def todo(self):10 pass # Will implement later