0

how many times the "while" loop got executed?

a = 0 while(a<10): if (a == 1): continue if (a == 5): break a = a+1 print(a)

24th Jun 2019, 9:34 AM
sky
0 Antworten