函数输入两个字符串,插入字符串
时间: 2023-10-07 08:13:32 浏览: 91
可以使用以下函数来实现字符串的插入:
```python
def insert_string(str1, str2, index):
return str1[:index] + str2 + str1[index:]
```
这个函数接受三个参数:`str1` 是要插入字符串的目标字符串,`str2` 是要插入的字符串,`index` 是插入的位置。
例如,如果我们调用 `insert_string('Hello, world!', ' beautiful', 6)`,它将返回 `'Hello, beautiful world!'`。在这个例子中,我们将字符串 `' beautiful'` 插入到目标字符串 `'Hello, world!'` 的位置 6 处。
请注意,这个函数只能用于插入字符串,而不是替换字符串。如果你需要替换字符串,可以使用 `replace()` 函数。
阅读全文