python的题 求解

python的题 求解

def one(s):return s == s[::-1]def two(lst):lst.sort()del(lst[len(lst) - 1])lst.append(lst.pop(0))return lst.copy()def th
Python240