syntax of continue statement in python code example
Example 1: python break for loop
for x in range(5):
print(x * 2)
if x > 3:
break
Example 2: python continue
nums = [7,3,-1,8,-9]
positive_nums = []
for num in nums:
if num < 0:
continue
positive_nums.append(num)
print(positive_nums)
Example 3: python for continue
>>> for num in range(2, 10):
... if num % 2 == 0:
... print("Found an even number", num)
... continue
... print("Found a number", num)
Found an even number 2
Found a number 3
Found an even number 4
Found a number 5
Found an even number 6
Found a number 7
Found an even number 8
Found a number 9
Example 4: break python
for val in "string":
if val == "i":
break
print(val)
print("The end")
---------------------------------------------------------------------------
s
t
r
The end