On May 28, 11:25 am, "James" <[EMAIL PROTECTED]> wrote:
> word = raw_input("Type a word:")
> start = len(word)
>
> for letter in range(start, 0, -1):
>     print letter

Hi James,

for letter in reversed(word):
    print letter

--
Paul Hankin
--
http://mail.python.org/mailman/listinfo/python-list

Reply via email to