码迷,mamicode.com
首页 > 编程语言 > 详细

Python判断数字回文(转字符串实现,不转字符串实现)

时间:2019-09-12 13:23:40      阅读:95      评论:0      收藏:0      [点我收藏+]

标签:bool   rom   number   ==   pytho   对比   als   try   数字   

Python实现数字回文的判断,回文返回True,非回文返回False, 只有一位数的也返回True.

其中思路一,将数字转换成字符串,然后跟逆序对比,但需要额外的空间开销来创建字符串。具体实现:

def isPalindrome(x):
"""
:type x: int
:rtype: bool
"""
str_x = str(x)
if len(str_x) == 0:
print("Input {0} is invalid.".format(x))
return False
return str_x == str_x[::-1]


if __name__ == ‘__main__‘:
input_str = input("Please input one number:")
try:
x = int(input_str)
print(isPalindrome(x))
except ValueError:
print("Input {0} is invalid.".format(input_str))


Python判断数字回文(转字符串实现,不转字符串实现)

标签:bool   rom   number   ==   pytho   对比   als   try   数字   

原文地址:https://www.cnblogs.com/kaiying-Tang/p/11511192.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!