Skip to main content

while loop in Python


 



i = int(input())
while(i<10):
    if i%2==0:
        print(i)
    i = i+1




Comments