try something like ->

    s = raw_input("Please Press a button...")
    #s is the string they type.

Although i believe i remember a PEP that said they were removing
raw_input so perhaps

    print "Please Press A button..."
    s = sys.stdin.readline()

would be better, note the above requires you to 'import sys'

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to