输入一个带有py的字符串,替换其中出现的”py“为”python“,输出替换后的字符串
时间: 2024-01-03 19:05:55 浏览: 87
python字符串替换的2种方法
示例输入: "hello py world, I love py!"
示例输出: "hello python world, I love python!"
代码实现:
```python
s = "hello py world, I love py!"
new_s = s.replace("py", "python")
print(new_s)
```
阅读全文