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.
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")
Comments
Post a Comment