For Loop in Python || for loop || Python
In this we are going to see a basic program on for loop operations in Python Programming Language.


for i in range(50):
    if i % 2 == 0:
        continue
    print(i)

#ENJOY CODING


Post a Comment

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

Previous Post Next Post