17-09-2025 while loop 3
x=5
while(x>0):
print("x is larger than 0")
if x == 5:
x = x -1
continue
if x == 3:
break
print(x)
x = x -1
else:
print("normal exit of the while")
print('after while')
INFO