#!/Library/Frameworks/Python.framework/Versions/Current/bin/python # L-22 MCS 275 Wed 3 Mar 2010 : give_words.py import cgi form = cgi.FieldStorage() print "Content-Type: text/plain\n" try: s = form['sometext'].value print "your paragraph is \n" + s except KeyError: print "please enter some words"