python字符串插入
时间: 2023-08-27 20:04:46 浏览: 114
python字符串
5星 · 资源好评率100%
在Python中,可以使用字符串的内置方法 `insert()` 或字符串的连接操作来插入一个字符串。
使用 `insert()` 方法:
```python
string = "Hello, world!"
new_string = string[:5] + "Python " + string[6:]
print(new_string) # 输出: Hello, Python world!
```
使用字符串连接操作:
```python
string = "Hello, world!"
new_string = string[:5] + "Python " + string[5:]
print(new_string) # 输出: Hello, Python world!
```
以上两种方法都是在原始字符串中选择需要插入的位置,然后将插入的字符串与原始字符串拼接起来形成新的字符串。
阅读全文