You can download this code by clicking the button below.
This code is now available for download.
Reverses the input string.
Technology Stack : String slicing
Code Type : String operation
Code Difficulty : Beginner
def string_reverse(text):
return text[::-1]