In this we are going to see a program on continue statement in while loop till 6 no. is entered in Python Programming Language.
x = True
while x:
i = int(input("Enter The Number : "))
if i==6:
x = False
continue
print(i)
# Coded By DHIRAJ SHELKE
#ENJOY CODING
Post a Comment
FOR ANY DOUBTS AND ERRORS FEEL FREE TO ASK. YOUR DOUBTS WILL BE ADDRESSED ASAP