Continue Statement in Python || While Loop || Python
In this we are going to see a basic program on continue statement in while loop using Python Programming Language.


def continue_statement():
    i = 0
    while i < 10:
        i += 1
        if i % 2 == 0:
            continue
        print(i)

continue_statement()

# 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