回覆列表
-
1 # 使用者4099447605703854
-
2 # 小小平凡生活雜記
reverse()是python列表中的一個內建方法,用於反向列表中元素;語法:“list.reverse()”。reverse()方法沒有返回值,但是會對列表的元素進行反向排序。
Python中 reverse()是列表的內建方法,無引數,無返回值,reverse()會改變列表(原地反轉),因此無需返回值。字典、元組、字串不具有reverse()方法,如果呼叫將會返回一個異常.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 def ishuiweinum(num): if not isinstance(num,int): return False if num0: numlist.append(num%10) num/=10 reverselist=numlist[:] reverselist.reverse() return reverselist==numlist if __name__=='__main__': print(ishuiweinum(12345)) print(ishuiweinum(1234321))