Computer Science, asked by abhay9628, 10 months ago

13. Enter a string and print it in reverse in one row.​

Answers

Answered by nishchaybhutoria
0

Answer:

In python 3.x, the following code works:

Explanation:

string = input("Enter a string: ")

 print(string[::-1])

Similar questions