python判断回文数代码
时间: 2023-09-04 22:16:30 浏览: 119
python判断是否是回文数
以下是Python的判断回文数的代码:
```python
def is_palindrome(num):
"""判断一个数是否为回文数"""
str_num = str(num)
return str_num == str_num[::-1]
# 测试
print(is_palindrome(121)) # True
print(is_palindrome(12321)) # True
print(is_palindrome(12345)) # False
```
该函数将输入的数字转换成字符串,然后判断反转后的字符串是否与原始字符串相同,从而判断是否为回文数。
阅读全文