In this example, I’ll show you How to reverse a string in Python.
To reverse a string entered by the user in python, you have to ask from user to enter the desired string which is going to reverse to reverse that string and print the reversed string as output as shown in the program given below.
Python Programming Code to Reverse a String
Following python program ask from the user to enter a string to reverse that string and print it as output:
1 2 3 4 5 6 7 8 9 10 11 12 |
# Python Program - Reverse String print("Enter 'x' for exit."); string = input("Enter any string to reverse it: ") if string == 'x': exit(); else: revstring = string[::-1]; print("\nOriginal String =",string); print("Reversed String =",revstring); |
Here is the sample run of the above python program to illustrate how to reverse a string in python: