添加字符或字符串
如果想在字符串 土堆 后面或者前面添加 碎念 字符串。
可以使用 + 号实现字符串的连接,或者使用方法 .join() 来连接字符串。
.join() 方法
官方是这样介绍的:
S.join(iterable) ->str Return a string which is the concatenation of the strings in the iterable. The separator between elements is S.
.join() 方法中传递的参数需要是可迭代的,另外,是使用S作为可迭代参数的分割。
通过以上几点,我们可以这样理解:
a.join(b) ,比如 b=123456,是可以迭代的。这个方法的作用就是把a插入到b中每个字符中。1a2a3a4a5a6就是输出。
''.join([a, b]) 是比较常见的用法。 '' 是空字符,意味着在a, b之间加入空字符,也就是将a, b进行了连接。
实现添加
a = '撒旦士大试试夫'
b = '土堆试夫'
print(a + b)print(''.join([a, b]))
2、插入字符实现
首先将字符串转换为列表,然后使用列表的 .insert() 方法来插入字符。
.insert() 用法
L.insert(index, object) -- insert object before index
注意: .insert() 方法不返回参数,直接在对 L 进行修改。
将对象插入到指定位置的前面。比如 ['a', 'b'].insert(1, 'c') ,那么最后的输出就是`['a', 'c', 'b']。
这个方法是属于列表的方法。
实现插入
a = '撒旦士大试试夫'
b = '土堆'str_list = list(a)str_list.insert(4, b)a_b = ''.join(str_list)
可以使用字符串的replace方法来实现。将需要插入的字符串插入到指定位置,并用replace方法替换原来的字符串即可。例如,将字符串"world"插入到字符串"hello, python!"的位置中:
```python
s = "hello, python!"
s = s.replace("python", "world, python")
print(s)
```
输出结果为:
```
hello, world, python!
```
其中,replace方法的参数分别为要被替换的子串和替换后的子串。在这个例子中,将"python"替换为"world, python",即可将新字符串插入到原字符串中。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)