<HTML><FONT FACE=arial,helvetica><FONT  SIZE=2>Hello, I created my first python script that basically asks
<BR>a user to guess a number, and if they are correct, it tells them they win
<BR>yipee :)
<BR>But it works only when I run it at the command line
<BR>
<BR>how do I get such a thing to work online? I get python to work via cgi scripts
<BR>but the line:
<BR>    password = raw_input("Password:")
<BR>
<BR>caused this error:
<BR>Traceback (innermost last): File "/home/sites/site7/web/test/game.cgi", line 8, in ? password = raw_input("Password:") EOFError: EOF when reading a line 
<BR>
<BR>See, raw_input as you know would allow the command line
<BR>to ask me to type a number. how do I replicate this online?
<BR>
<BR>Thanks
<BR>
<BR>Joel
<BR>PS. If needed, I can post source code, I chose not to in case it would
<BR>be a waste of space or redundant</FONT></HTML>