input a string and print the reverse of each word
Answers
Answered by
1
Answer:
its a python code
Explanation:
s=str(input("enter the string"))
rev=s[::-1]
print(rev)
#hope it helps you
please mark brainliest
Similar questions