While Loop in Python || While Loop || Python
In this we are going to see a basic program on While Loop in Python Programming Language.


def simple_while_loop():
    i = 1
    while i <= 10:
        print(i)
        i += 1
    print("Done with Loop")

simple_while_loop()

# 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