2011-04-13, 01:34 AM
Also, appreciate the help. 

Code:
def backwards_word(words):
for index in range(-1, -len(words)-1, -1):
print (words[index]),
while index <= len(words):
letter = words[index]
print letter
index -= 1
words = raw_input("Word: ")
backwards_word(words)
