Statement Python Tutorial

for x in range( 1, 11 ):
   if x == 5:
      continue
   print x,
print "\nUsed continue to skip printing the value 5"