#!/Library/Frameworks/Python.framework/Versions/Current/bin/python # L-21 MCS 275 Mon 1 Mar 2010 : give_number.py import cgi form = cgi.FieldStorage() print "Content-Type: text/plain\n" try: n = form['number'].value print "your number is " + n except KeyError: print "please enter a number"