Computer Science, asked by garimaluthra5, 1 month ago

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

Answers

Answered by maheeth95
1

Answer:

word = input("Input a word to reverse: ")

for char in range(len(word) - 1, -1, -1):

print(word[char], end="")

print("\n")

Similar questions