using break on while python code example
Example 1: python break for loop
#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
Example 2: continue in python
# Example of continue loop:
for number is range (0,5):
# If the number is 4, skip the rest of the loop and continue from the top.
if number == 4:
continue
print(f"Number is: {number}")