python-輸出鏡像數字-回數

-- coding: utf-8 -- def is_palindrome(x): s=str(x) i=0 j=len(s)-1 while s[i]==s[j] and j-i>=0 : i=i+1 j=j-1 if j-i<=0 : return x 測試: output = filter(is_palindrome, range(1, 100)) print(‘1~100:’, list(
相關文章
相關標籤/搜索