Python Continue Statement In For Loop || Break || Python
In this we are going to see a program on continue statement in for loop in Python Programming Language.


for i in range(0,10):
    if i==6:
        continue
    print(i)

# Coded By DHIRAJ SHELKE

#ENJOY CODING


Post a Comment

FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP

Previous Post Next Post