简洁代码---python---string时间:2021-06-08 04:58:49判断字符串是否是回文的,即是否中心对称的: >>>return s[::-1] == s 对称返回True, 否则返回False