continue pythoin code example
Example 1: continue py
# Program to show the use of continue statement inside loops
for val in "string":
if val == "i":
continue
print(val)
print("The end")
# Output:
# s
# t
# r
# n
# g
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.