Re: Noob raw_input question

2010-02-24 Thread Abigail
Thank You -- http://mail.python.org/mailman/listinfo/python-list

Re: Noob raw_input question

2010-02-24 Thread Steve Holden
Abigail wrote: > Yesterday I downloaded and installed Python 3.1 and working through some > examples but I have hit a problem > a = raw_input("Enter a number" ) > Traceback (most recent call last): > File "", line 1, in > a = raw_input("Enter a number" ) > NameError: name 'raw_input'

Re: Noob raw_input question

2010-02-24 Thread John Posner
On 2/24/2010 12:39 PM, Abigail wrote: Yesterday I downloaded and installed Python 3.1 and working through some examples but I have hit a problem a = raw_input("Enter a number" ) Traceback (most recent call last): File "", line 1, in a = raw_input("Enter a number" ) NameError: name 'raw

Re: Noob raw_input question

2010-02-24 Thread Robert Kern
On 2010-02-24 11:39 AM, Abigail wrote: Yesterday I downloaded and installed Python 3.1 and working through some examples but I have hit a problem a = raw_input("Enter a number" ) Traceback (most recent call last): File "", line 1, in a = raw_input("Enter a number" ) NameError: name 'ra

Re: Noob raw_input question

2010-02-24 Thread Chris Rebert
On Wed, Feb 24, 2010 at 9:39 AM, Abigail wrote: > Yesterday I downloaded and installed Python 3.1 and working through some > examples but I have hit a problem > a = raw_input("Enter a number" ) > Traceback (most recent call last): >  File "", line 1, in >    a = raw_input("Enter a number" )