Pythonの最初のCGIプログラム

print "Content-type:text/html\r\n\r\n"
print '<html>'
print '<head>'
print '<title>Hello Word - First CGI Program</title>'
print '</head>'
print '<body>'
print '<h2>Hello Word! This is my first CGI program</h2>'
print '</body>'
print '</html>'

おすすめ

転載: blog.csdn.net/clarence20170301/article/details/76514146
おすすめ