What's the result of the following code? Please give the answer with explain. b=20 while True:     if b<9:         continue | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

What's the result of the following code? Please give the answer with explain. b=20 while True:     if b<9:         continue

Answer it if possible

24th Apr 2020, 2:57 AM
sumaiya sharmin
sumaiya sharmin - avatar
2 Answers
+ 4
Why don't you try it on your own on sololearn's code playground.
24th Apr 2020, 3:36 AM
Arsenic
Arsenic - avatar
0
no result, just infinite loop (timeout limit reached error in contexts such as sololearn's code playground) as even if b was magically modified to something lesser than 9 the while loop will never exit... to exit the infinite while loop, you need to have a reachable 'break' statement rather than a 'continue' one... ... and anyway, there's nothing to output any result ;P
25th Apr 2020, 2:39 AM
visph
visph - avatar