2011-04-13, 02:05 AM
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