题解列表

筛选

回文串 (Python代码)

摘要:a=input() //用reversed方法验证是否为回文形 b=list(reversed(a)) //最后进行判断 if list(a)== b: ……