编写一个名为 reverseString 的函数,它接收一个字符串并返回反转所有字符的字符串,例如 如果函数被调用参数 PJ 它将返回 JP。
def reverseString(s): return s[::-1]