<html>
<head>
<style><!--
.hmmessage P
{
margin:0px;
padding:0px
}
body.hmmessage
{
font-size: 12pt;
font-family:Calibri
}
--></style></head>
<body class='hmmessage'><div dir='ltr'>> Date: Wed, 5 Jun 2013 07:40:52 -0700<br><div>> Subject: I just wrote my first Python program a guessing game and it exits        with an error I get this.<br>> From: armandomontesdeocaiii@gmail.com<br>> To: python-list@python.org<br>> <br>> Traceback (most recent call last):<br>>   File "Guessing_Game.py", line 32, in <module><br>>     input (enter)<br>>   File "<string>", line 0<br>>     ^<br>> SyntaxError: unexpected EOF while parsing<br>> ------------------<br>> (program exited with code: 1)<br>> This is the only place a string is used:<br>> else:<br>>  print "Sorry you loose the game."<br>>       computernum = str(computernum)<br>>    print " The computers number was!"+ computernum<br>>         input (enter)<br><br>Did you declared an 'enter' variable? Because input() expects a string.<br><br>>        sys.exit(0)<br>> Thank You,<br>> -- <br>> http://mail.python.org/mailman/listinfo/python-list<br></div>                                    </div></body>
</html>