In the Zumper mobile app, some text-processing utilities need to reverse user-entered strings. Write a function that takes a string and returns a new string with its characters in reverse order.
ss in reverse orderExample 1
s = "zumper""repmuz"Example 2
s = "Rent""tneR"0 <= len(s) <= 10^5s may contain letters, digits, spaces, and punctuationAim for a linear-time solution. You may solve this with Python string slicing or by building the result manually with two pointers or iteration.