r7-17+判断回文字符串pta
时间: 2023-12-30 17:06:26 浏览: 102
以下是判断回文字符串的Python代码:
```python
s = input() # 输入字符串
s_reverse = ''.join(reversed(s)) # 将字符串反转
if s == s_reverse: # 判断是否为回文字符串
print('Yes')
else:
print('No')
```
相关问题
PTA R7-3 字符串替换
以下是Python实现字符串替换的代码示例:
```python
# 读入文件内容
content = []
while True:
line = input()
if line == 'end':
break
content.append(line)
# 获取需要替换的字符串和替换后的字符串
old_str, new_str = input().split()
# 替换字符串
for i in range(len(content)):
content[i] = content[i].replace(old_str, new_str)
# 输出替换后的结果
for line in content:
print(line)
```
阅读全文