Re: A quick question

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • D'Arcy J.M. Cain

    Re: A quick question

    On Wed, 28 May 2008 10:25:01 -0000
    "James" <cobrocks@msn.c omwrote:
    I just started using python and cant figure this out, I'm trying to
    make a program where someone types in a word and the program gives it
    back backwards. For example if the person puts in "cat" I want the
    program to give it back as "tac" and what it does is prints out 3,2,1.
    How can I get these integers to print as letters? This is what I have,
    >
    word = raw_input("Type a word:")
    start = len(word)
    >
    for letter in range(start, 0, -1):
    print letter
    Try "for letter in start:"

    --
    D'Arcy J.M. Cain <darcy@druid.ne t | Democracy is three wolves
    http://www.druid.net/darcy/ | and a sheep voting on
    +1 416 425 1212 (DoD#0082) (eNTP) | what's for dinner.
Working...