1 2 3 4 5 6 7 8 9 10
""" Simple CGI script in Python Future import allows it to execute in both python 2 & 3 """ from __future__ import print_function print('Content-Type: text/plain') print() print('simple output')