Contact: aviboots(AT)netvision.net.il
41,445 questions
53,992 answers
573 users
i = 0 while True: print(i) i = i + 1 if (i > 10): break ''' run: 0 1 2 3 4 5 6 7 8 9 10 '''
i = 0 b = True while b == True: print(i) i = i + 1 if (i > 10): b = False ''' run: 0 1 2 3 4 5 6 7 8 9 10 '''