Re: New User-Need-Help

2013-02-15 Thread Terry Reedy
On 2/15/2013 4:45 PM, Deborah Piotrowski wrote: I am very new to Python, I am using the e-book "Python Programming for the Absolute Beginner" and am starting with a simple "Game Over" Program. This is the code:which is extremely simple!\ print"Game Over" raw_input("\n\nPress Enter Key to exit")

Re: New User-Need-Help

2013-02-15 Thread Deborah Piotrowski
WAIT!! It works now, I just needed to save it in script. Thank you guys so much!! My best regards, Nicholas On Fri, Feb 15, 2013 at 4:21 PM, Joel Goldstick wrote: > Print needs parense in python 3 > On Feb 15, 2013 5:48 PM, "Bob Brusa" wrote: > >> >> >> Am Freitag, 15. Februar 2013 schrieb Joel

Re: New User-Need-Help

2013-02-15 Thread Joel Goldstick
Print needs parense in python 3 On Feb 15, 2013 5:48 PM, "Bob Brusa" wrote: > > > Am Freitag, 15. Februar 2013 schrieb Joel Goldstick : > >> >> >> >> On Fri, Feb 15, 2013 at 4:45 PM, Deborah Piotrowski < >> spiceninj...@gmail.com> wrote: >> >>> Hi, >>> >>> >>> I am very new to Python, I am using

Re: New User-Need-Help

2013-02-15 Thread John Gordon
In Deborah Piotrowski writes: > print "Game Over" > input("\n\nPress the Enter Key to Exit") > Syntax Error: Invalid Syntax You're probably using Python version 3, but the book was written for version 2. The print statement is handled a bit differently in version 3. Change your print statem

Re: New User-Need-Help

2013-02-15 Thread Bob Brusa
print uses the new syntax e.g. print("example") in 3.r Sent from my BlackBerry® wireless device -Original Message- From: Deborah Piotrowski Date: Fri, 15 Feb 2013 16:08:17 To: Bob Brusa Cc: Joel Goldstick; python-list@python.org Subject: Re: New User-Need-Help print "G

Re: New User-Need-Help

2013-02-15 Thread Deborah Piotrowski
print "Game Over" input("\n\nPress the Enter Key to Exit") Syntax Error: Invalid Syntax On Fri, Feb 15, 2013 at 3:48 PM, Bob Brusa wrote: > > > Am Freitag, 15. Februar 2013 schrieb Joel Goldstick : > > >> >> >> On Fri, Feb 15, 2013 at 4:45 PM, Deborah Piotrowski < >> spiceninj...@gmail.com> wrot

Re: New User-Need-Help

2013-02-15 Thread John Gordon
In Deborah Piotrowski 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:

Re: New User-Need-Help

2013-02-15 Thread Bob Brusa
Am Freitag, 15. Februar 2013 schrieb Joel Goldstick : > > > > On Fri, Feb 15, 2013 at 4:45 PM, Deborah Piotrowski < > spiceninj...@gmail.com 'spiceninj...@gmail.com');>> wrote: > >> Hi, >> >> >> I am very new to Python, I am using the e-book "Python Programming for >> the Absolute Beginner" and a

Re: New User-Need-Help

2013-02-15 Thread Joel Goldstick
On Fri, Feb 15, 2013 at 4:45 PM, Deborah Piotrowski wrote: > Hi, > > > I am very new to Python, I am using the e-book "Python Programming for the > Absolute Beginner" and am starting with a simple "Game Over" Program. This > is the code:which is extremely simple! > print"Game Over" raw_input("\n\

New User-Need-Help

2013-02-15 Thread Deborah Piotrowski
Hi, I am very new to Python, I am using the e-book "Python Programming for the Absolute Beginner" and am starting with a simple "Game Over" Program. This is the code:which is extremely simple! print"Game Over" raw_input("\n\nPress Enter Key to exit") That's it. It is supposed to bring up a windo