Re: [Tutor] help with integers

2010-09-14 Thread Alan Gauld
"Ciera Jones" wrote When I enter myvar= raw_input ("Please excuse a number of movies: ") and I try and convert it to an integer it gives me an error message. I put in: movietotal= int("myvar")* 3 and I get an error message Don't put quotes around the variable name. Python is trying to conve

Re: [Tutor] help with integers

2010-09-14 Thread Joel Goldstick
On Tue, Sep 14, 2010 at 8:00 PM, Ciera Jones wrote: > Hi > When I enter myvar= raw_input ("Please excuse a number of movies: ") > and I try and convert it to an integer it gives me an error message. > I put in: > movietotal= int("myvar")* 3 and I get an error message > Ciera > post your code..