Re: [Tutor] Beginner question(s)

2006-06-19 Thread David Rock
* Ismael Garrido <[EMAIL PROTECTED]> [2006-06-18 19:34]: > Alan Gauld wrote: > >> Also, does anyone know of a PDA that would run python? > >> > > > > There was a project called pippy, but I haven't heard anything of it > > recently so I don't know if its still around or if it runs on modern

Re: [Tutor] Beginner question(s)

2006-06-18 Thread John Fouhy
> Also, does anyone know of a PDA that would run python? Some of the new Nokias run python: http://www.forum.nokia.com/python -- John. ___ Tutor maillist - Tutor@python.org http://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Beginner question(s)

2006-06-18 Thread Ismael Garrido
Alan Gauld wrote: >> Also, does anyone know of a PDA that would run python? >> > > There was a project called pippy, but I haven't heard anything of it > recently so I don't know if its still around or if it runs on modern > PDAs - I think it was PalmOS anyhow... > > Pippy is quite dea

Re: [Tutor] Beginner question(s)

2006-06-18 Thread Alan Gauld
> message = raw_input("Enter your message:") > for i in range(len(message)-1,-1, -1): >print i, > > but I just get the numeric values of the string. Can anyone help? As an alternative approach consider converting to a list and using the reverse method... > Also, does anyone know of a PDA t

Re: [Tutor] Beginner question(s)

2006-06-18 Thread Michael Sullivan
On Sun, 2006-06-18 at 05:58 -0500, Bill Tatum wrote: > Hi, > > > > I’m working through Python Programming for the Absolute Beginner. One > of the challenges at the end of chapter 4 is to get a message from the > user and then print it out backwards. I have… > > > > message = raw_input("Ent

[Tutor] Beginner question(s)

2006-06-18 Thread Bill Tatum
Hi,   I’m working through Python Programming for the Absolute Beginner.  One of the challenges at the end of chapter 4 is to get a message from the user and then print it out backwards. I have…   message = raw_input("Enter your message:") count = len(message) print count   which giv