This prints the word while removing characters from the beginning.
word = "word"
length = len(word)
for s in range(0, length):
    print(word[s:])
    s=+1
So the output is
word
ord
rd
d
How do I flip it around so it would print the word backwards while removing characters?
So that the output would be:
drow
row
ow
w
 
     
     
    