2011-04-13, 02:07 AM
Fiel Wrote:Nope. Use "#" before the lines. A # is a comment
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
# break
Hmm. Thanks! I have no clue why that works.. Time to do some research.

