Re: I'm a newbie and I'm stumped...

2015-08-03 Thread josephbigler
On Saturday, August 1, 2015 at 11:59:14 AM UTC-4, Dwight GoldWinde wrote: > Please help. > > > I am running Python 3.4 on my Mac mini, OS X 10.10.2, using Coderunner 2 as > my editor. > > > Here's the code: > > #!/usr/bin/env python3 > word = (input('Enter a word ')) > > > When running this

Re: I'm a newbie and I'm stumped...

2015-08-01 Thread Paulo da Silva
On 31-07-2015 02:22, Dwight GoldWinde wrote: > Please help. > > I am running Python 3.4 on my Mac mini, OS X 10.10.2, using Coderunner 2 > as my editor. > > Here’s the code: > #!/usr/bin/env python3 > word = (input('Enter a word ‘)) As is here, this code should raise a syntax error message like

Re: I'm a newbie and I'm stumped...

2015-08-01 Thread Terry Reedy
On 7/30/2015 9:22 PM, Dwight GoldWinde wrote: Please help. I am running Python 3.4 on my Mac mini, OS X 10.10.2, using Coderunner 2 as my editor. Here’s the code: #!/usr/bin/env python3 word = (input('Enter a word ‘)) The outer parentheses are not needed. Ditto to the other comments, especial

Re: I'm a newbie and I'm stumped...

2015-08-01 Thread Emile van Sebille
On 7/30/2015 6:22 PM, Dwight GoldWinde wrote: I am running Python 3.4 on my Mac mini, OS X 10.10.2, using Coderunner 2 as my editor. Here¹s the code: #!/usr/bin/env python3 word = (input('Enter a word Œ)) When running this inside of Coderunner, I get the follow error, after entering the word Œs

Re: I'm a newbie and I'm stumped...

2015-08-01 Thread Joel Goldstick
On Thu, Jul 30, 2015 at 9:22 PM, Dwight GoldWinde wrote: > Please help. > > I am running Python 3.4 on my Mac mini, OS X 10.10.2, using Coderunner 2 as > my editor. > > Here’s the code: > #!/usr/bin/env python3 > word = (input('Enter a word ‘)) > > When running this inside of Coderunner, I get the