题目:判断一个整数是否是回文数。回文数是指正序(从左向右)和倒序(从右向左)读都是一样的整数。
示例 1:
输入: 121
输出: true
示例 2:
输入: -121
输出: false
解释: 从左向右读, 为 -121 。 从右向左读, 为 121- 。因此它不是一个回文数。

代码如下:

print(r'退出程序请使用"Ctrl+C"')
while True:
    str1=input('请输入一个整数:')
    s=len(str1)
    str2=str1[-1:-s-1:-1]
#也可以简化为 str2 = str1[::-1]
    if str1==str2:
        print(True)
#True和False本身就是一个布尔类型,输出无需加引号
    else:
        print(False)
Last modification:February 18th, 2019 at 02:23 pm
If you think my article is useful to you, please feel free to appreciate