Skip to main content

write a python program to use of while loop.

 write a python program to use of while loop.


count =1

while(count<10):

    print("The Count is :",count)

    count = count + 1

print("Out of While Loop")



for execution and output so check the video.



Comments