In <mailman.1848.1360964736.2939.python-l...@python.org> Deborah Piotrowski 
<spiceninj...@gmail.com> 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
gor...@panix.com              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

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

Reply via email to