Simple hello.py: Difference between revisions

From Wildsong
Jump to navigationJump to search
Brian Wilson (talk | contribs)
mNo edit summary
 
Brian Wilson (talk | contribs)
mNo edit summary
Line 1: Line 1:
#!/usr/bin/python
#!/usr/bin/python
 
from time import localtime, strftime
from time import localtime, strftime
 
print "Content-type: text/html"
print "Content-type: text/html"
print
print
print "<html><header><title>Python presents: SIMPLE HELLO!!!</title></header><body>"
print "<html><header><title>Python presents: SIMPLE HELLO!!!</title></header><body>"
print "<h1>Hello</h1>"
print "<h1>Hello</h1>"
print strftime("%a, %d %b %Y %H:%M:%S", localtime())
print strftime("%a, %d %b %Y %H:%M:%S", localtime())
print "</body></html>"
print "</body></html>"

Revision as of 00:28, 31 August 2005

#!/usr/bin/python

from time import localtime, strftime

print "Content-type: text/html"
print
print "<html><header><title>Python presents: SIMPLE HELLO!!!</title></header><body>"

print "

Hello

"

print strftime("%a, %d %b %Y %H:%M:%S", localtime())
print "</body></html>"