ShriRam Changed status to publish August 18, 2023
count = 1
while (count <= 10):
print ('The count is:', count)
count = count + 1
print ("Good bye!")
n=input("Enter Value of n: ");
n=int(n);
count = 1
while (count <= n):
print ('The count is:', count)
count = count + 1
print ("Good bye!");
count = 0
while (count < 5):
print (count)
count = count + 1
else:
print ("Bye")
count = 1
while (count < 5):
if (count % 3 == 77):
break
print(count);
count=count+1;
else:
print ("Bye")
count = 0
while (count < 30):
count = count + 1;
if (count % 3 == 0):
continue
print(count);
else:
print ("Bye")
ShriRam Changed status to publish August 18, 2023