if True: if True: if True: print 'True' # http://www.python.org/doc/2.5.4/tut/node5.html#strings hello = "This is a rather long string containing\n\ several lines of text just as you would do in C.\n\ Note that whitespace at the beginning of the line is\ significant." print hello # http://www.python.org/doc/2.5.4/tut/node6.html#lambda def make_incrementor(n): return lambda x: x + n f = make_incrementor(42) print f(0) print f(1)