+ 8
Exact code for solving extra terrestials problem i have tried everything
Show me the exact code
8 Answers
+ 4
You might be using the variable name the same as one of data types, which you shouldn't do.
Try:
print(input()[::-1])
+ 3
Pls show us your attempt
https://www.sololearn.com/discuss/1316935/?ref=app
+ 3
But i have tried that see
+ 2
str=input(garbage)
Print(str[::-1])
+ 2
That is what i tried
+ 2
Tnx bro
+ 1
Oh man, that's one of the easiest ones. Just make the string reversed, that's all...
+ 1
Try this
inp=input() [::-1]
print (inp)