continue pytohn code example
Example 1: continue py
for val in "string":
if val == "i":
continue
print(val)
print("The end")
Example 2: continue python
The continue statement in Python returns the control to the beginning of the
while loop. The continue statement rejects all the remaining statements
in the current iteration of the loop and moves the control back to the top of
the loop.
The continue statement can be used in both while and for loops.
Example 3: python continue
for i in range(10):
if i == 3:
continue
print(i)
Example 4: 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)