#EXAMPLE 1 y = 1 if y == 1: print "y still equals 1, I was just checking" #EXAMPLE 2 print "We will show the even numbers up to 20" n = 1 while n <= 20: if n % 2 == 0: print n n = n + 1 print "there, done."