Write a Python function that reverses a string. ============== def reverse_string(s): return s[::-1]