79821777

Date: 2025-11-16 22:16:47
Score: 1
Natty:
Report link

You can also add in a break at the end of your code, see below:

fruit = 'apple'
index = -1

while index <= len(fruit):
    letter = fruit[index]
    print(letter)
    index = index - 1
    if index == len(fruit)*-1:
        break
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: Josh Sepic