#!/usr/bin/python for i in range(3): if i == 4: print "I found 4!" break else: print "Don't care about",i else: print "I searched but never found 4!"