0
Why didn't print the string in the second while loop pls clear my douts
a=0 b=1 while 2<=3: print (a) a=a+2 if a==10: print ("even number") break while 3>=1: print (b) b=b+2 if b==10: print ("odd number") break print ("f")
1 Answer
0
out put is too long although I use break