2011-04-13, 01:08 AM
Start with -1, not with 0
Code:
word = 'crap'
for index in range(-1, -len(word)-1, -1):
print(word[index]),