用Python求2到2000的回文数
时间: 2023-05-22 13:01:57 浏览: 105
python实战:回文数.zip
以下是用 Python 求 2 到 2000 的回文数的代码:
```python
def is_palindrome(n):
return str(n) == str(n)[::-1]
palindromes = [n for n in range(2, 2001) if is_palindrome(n)]
print(palindromes)
```
这个程序会输出 2 到 2000 之间的所有回文数。
阅读全文