Send the Words To Mirror Dimension

Python program that accepts a word from the user and reverse it.

1 Like

@ramskavali119

word = input(β€œInput a word to reverse: β€œ)
for char in range(len(word) - 1, -1, -1):
print(word[char], end=””)
print(β€œ\n”)

1 Like