%!/usr/bin/env python @ This is a test script which displays the ability of my new noweb-script to actually execute a script which is embedded in a noweb styled file. <<*>>= <> print "Hello Python World!" print "Args:", sys.argv[1:] for n in xrange( 0, 10 ): <> print @ And that should do it, now we just need to do something with the numbers: <>= print n, @ Oh yeah, I need to import [[sys]] as well <>= import sys