The while statement, example 3 (2)

# program with a while loop
n = 40
while n < 20:
  print n,
  n = n+1
print "The value of n after the loop is:", n

will print:

The value of n after the loop is: 40

So, the body of the while loop is not executed