用python输入一个带有 py 的字符串,替换其中出现的字符串 "py" 为 "python",输出替换后的字符串。
时间: 2024-05-06 07:14:57 浏览: 54
python判断字符串以什么结尾的实例方法
可以使用字符串的replace方法来实现替换,代码如下:
```python
s = "hello py, this is a python program"
s = s.replace("py", "python")
print(s)
```
输出:
```
hello python, this is a python program
```
阅读全文