# while loop # If you want to keep looping until some condition becomes true, # the while loop comes useful. # This example prints out 10, 9, 8, 7 on the screen # After the word while, the conditional expression follows, here i > 6 i = 10 while i > 6: print i i = i - 1