思路: 把反转后的字符回填到原来的字符串中. def reversed_char(string): strs = string[::-1] length = len(strs) #mark = "".join((chr(i) for i ...
確定! 回上一頁