编写程序,检查字符串" Life is short. I use python"中是否包含字符串"python",若包含则替换为"Python"后输出新字符串,否则输出原字符串。使用python
时间: 2024-05-09 15:17:46 浏览: 149
【Python入门学习】2.Python字符串相关操作“:查找、拼接、拆分、替换、判断等
可以使用Python的字符串函数`find()`来检查字符串中是否包含另一个子字符串。如果`find()`返回-1,则说明字符串中不包含子字符串,否则返回子字符串在字符串中的起始位置。
下面是实现代码:
```
string = "Life is short. I use python"
if string.find("python") != -1:
new_string = string.replace("python", "Python")
print(new_string)
else:
print(string)
```
运行结果为:
```
Life is short. I use Python
```
请问还有什么问题吗?
阅读全文