CGI Web Python Tutorial

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