摘要: Python的回文数 def palindrome(str): if (len(str) == 1): return True else: i,j = 0, len(str)-1 while(i<j): if(str[i]!=str[j]): return False i +=1 j -=1 ret 阅读全文
posted @ 2020-11-13 07:34 JodyJoy 阅读(80) 评论(0) 推荐(0) 编辑