0
Please tell answer of code coach - extra terrestrial
You meet a group of aliens, and their language is just like English except that they say every word backwards. How will you learn to communicate with them? Task: Take a word in English that you would like to say, and turn it into language that these aliens will understand. Input Format: A string of a word in English. Output Format: A string of the reversed word that represents the original word translated into alien language. Sample Input: howdy
3 Answers
+ 8
Pls post your attempt if you want help in Q&A. If you want codes to refer you can find it in the Code section .Also,Kindly use the search bar before posting Questions .
+ 1
I understood your question
The simple approach to this type of problem is:-
Word = str(input(""))
print(Word[::-1])
+ 1
Answer:
word = input()
print(word[::-1])