How would you revert a string?
Implement reverse_string(s) to return the characters of s in reverse order. Preserve spaces, punctuation, repeated characters, and Unicode characters exactly. The input is a string, and the output must be a new reversed string.
def reverse_string(s):