Python输入一个带有py的字符串,替换其中出现的字符串py为Python,输出替换后的字符串
时间: 2024-04-20 18:06:44 浏览: 126
python字符串替换的2种方法
可以使用字符串的replace方法来实现:
```
string_with_py = "I love py! Python is the best!"
string_without_py = string_with_py.replace('py', 'Python')
print(string_without_py)
```
输出结果为:
```
I love Python! Python is the best!
```
阅读全文