Skip to content

Instantly share code, notes, and snippets.

@dimkouv
Created January 10, 2017 21:15
Show Gist options
  • Save dimkouv/c9292867435f852dd77b26a259da7f3b to your computer and use it in GitHub Desktop.
Save dimkouv/c9292867435f852dd77b26a259da7f3b to your computer and use it in GitHub Desktop.
#!/Python27/python.exe -u
import cgi
#cgi.test()
print "Content-Type: text/plain;charset=utf-8"
print
print "Hello World!"
print(5+5)
for i in range(10):
print(i)
form = cgi.FieldStorage()
print form["name"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment