鱼C论坛

 找回密码
 立即注册
查看: 3296|回复: 1

[新人报道] 求助大佬这个关于 Palindrome Number (Python)的问题

[复制链接]
发表于 2021-10-16 13:40:32 | 显示全部楼层 |阅读模式
10鱼币
题目:
Given an integer x, return true if x is palindrome integer.
An integer is a palindrome when it reads the same backward as forword.
代码:
num1 = input("请输入数字x:")
        x = int(num1)


        class Solution:
            def isPalindrome(self, x: int) -> bool:
                if x < 0: return False
                str_x = str(x)
                if len(str_x) == 1: return True
                for t in range(int(len(str_x) / 2)):
                    if str_x[t] != str_x[-1 - t]:
                        return False
                return True
求助这个代码的错误(其他方法也可以,麻烦附上注释,谢谢!!)

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2021-10-16 18:46:01 | 显示全部楼层
已解决
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-1 22:05

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表