leecode_python簡單題:9.迴文數 阿新 • • 發佈:2021-01-29 技術標籤:leetcodepython 判斷一個整數是否是迴文數。迴文數是指正序(從左向右)和倒序(從右向左)讀都是一樣的整數。 class Solution: def isPalindrome(self, x: int) -> bool: num = 0 a = abs(x) while(a != 0): temp = a % 10 num = num * 10 + temp a = a // 10 #python3中除法裡面只想保留整數的時候要加int a // 10 if x >= 0 and x == num: return True else: return False