for <variable> in <sequence>:
range(3,10,3)
path = "public_html/" file = "index.html" filename = path+file
x = [2,3,4] if x[2]==4: print "four" else: print "three"
canned = ["hello", "Are you ok today?", "What's new?"] num = random.randrange(0,len(canned)) response = raw_input(canned[num])