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
 
(One intermediate revision by the same user not shown)
Line 1: Line 1:
<pre>
#!/usr/bin/python
#!/usr/bin/python


Line 9: Line 10:
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>"
</pre>

Latest revision as of 00:29, 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 "<h1>Hello</h1>"
print strftime("%a, %d %b %Y %H:%M:%S", localtime())
print "</body></html>"