判断回文字符串pta
时间: 2023-12-13 09:04:39 浏览: 140
探讨一百一十一
以下是判断回文字符串的Python代码:
```python
def is_palindrome(s):
return s == s[::-1]
s = input("请输入一个字符串:")
if is_palindrome(s):
print("是回文字符串")
else:
print("不是回文字符串")
```
运行代码后,程序会要求用户输入一个字符串,然后判断该字符串是否为回文字符串,并输出结果。
阅读全文