SyntaxFix
Write A Post
Hire A Developer
Questions
The way I can think of without using any built-in functions:
a = 'word' count = 0 for letter in a: count += 1 b = '' for letter in a: b += a[count-1] count -= 1
And if you print b:
print b drow