These guys have their target segment well narrowed down..
for i in [78, 111, 119, 32, 72, 105, 114, 105, 110, 103, 0]: print chr(i),
Via MickBlog.
Posted to Funny by Simon Brunning at December 11, 2003 04:21 PMor in a more recent python release. (i forget when list comprehensions showed up)
print "".join([chr(i) for i in (78, 111, 119, 32, 72, 105, 114, 105, 110, 103, 0)])
none of those distracting spaces. ;-)
Posted by: j on December 11, 2003 08:27 PM