Q:

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

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used python 3.7 compiler for debugging purpose.

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

Result:

Input a word to reverse: techstudy

ydutshcet

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Write a Python program to find those numbers which... >>
<< Write a Python program to count the number of even...