In <[email protected]> Deborah Piotrowski 
<[email protected]> writes:

> This is the code:which is extremely simple!
> print"Game Over" raw_input("\n\nPress Enter Key to exit")
> That's it.

Does your code really have everything on one line, as you posted?  If so,
that's the problem.  It should be broken into two separate lines:

    print "Game Over"
    raw_input("\n\nPress Enter Key to exit")

I can't believe the book put all that code on one line...

-- 
John Gordon                   A is for Amy, who fell down the stairs
[email protected]              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

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

Reply via email to