python编写程序实现:检查字符串“Live is short, I use python”中是否包含字符串“python”,若是包含则替换为“Python”后输出,若不包含输出原字符串。
时间: 2024-01-03 12:05:55 浏览: 62
py代码-输入一个字符串,检查该字符串是否为回文(正着读和反着读都一样的字符串), 如果是就输出Yes,否则输出No。要求使用切片实现。
这是一个Python编写程序的问题,可以回答。下面是示例代码:
```
str = "Live is short, I use python"
if "python" in str:
new_str = str.replace("python", "Python")
print(new_str)
else:
print(str)
```
运行结果为:
```
Live is short, I use Python
```
阅读全文