In Python programming using the continue keyword in For Loop control flow statement causes the loop to jump to the next iteration of the loop immediately.
for a in range(11): #loop looping from 0 to 10.
if a == 5: #if 'a' value Equal to 5 then
print("The Statement is Break on 5!")
break #break Statement.
print(a)
for a in range(11): #loop looping from 0 to 10.
if a == 5: #if 'a' value Equal to 5 then
print("The Statement is Continued on 5!")
continue #Continue Statement, mean Skip 5.
print(a)
for a in range(11): #loop looping from 0 to 10.
for b in range(a): #loop looping from 0 to 'a' value.
print("* ", end="")
print()