+ 1
How can I make a string backwords in python.
Eample Input-. Hello Output- olleH
3 Answers
+ 8
x= " Hello "
print(x[::-1])
----------------------------------------------------------
This what you need I think.
It's very simple.
I'll recommend you to go through your python course once đ
Thanks and Happy Coding đ
+ 7
NiLeshâïž
print(input()[::-1])
#xD
0
Thank u,đ