Please tell answer of code coach - extra terrestrial | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
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

7th May 2021, 6:29 AM
Mayank
Mayank - avatar
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 .
7th May 2021, 6:32 AM
Kǟrɨsɦmǟ ❥
Kǟrɨsɦmǟ ❥ - avatar
+ 1
I understood your question The simple approach to this type of problem is:- Word = str(input("")) print(Word[::-1])
7th May 2021, 6:19 PM
Utsav Singh
Utsav Singh - avatar
+ 1
Answer: word = input() print(word[::-1])
2nd Jul 2022, 12:30 PM
⛈️𝕾𝖚𝖒𝖆 𝕭𝖆𝖘𝖆𝖐❄️
⛈️𝕾𝖚𝖒𝖆 𝕭𝖆𝖘𝖆𝖐❄️ - avatar