#!c:/Python25/pythonfrom os import *from cgi import *print "Content-type: text/html\n\n"printprint "These are the environment variables:"for key, value in environ.items(): print key, " = ", value, ""