Mega Code Archive

 
Categories / Python Tutorial / CGI Web
 

Your First Python CGI Script

#!c:/Python25/python from os import * from cgi import * print "Content-type: text/html\n\n" print "<BR><B>Hello Python!</B>"