python将一个字符串拼接到list的每个字符串元素上
时间: 2023-05-15 19:05:58 浏览: 140
python对list中的每个元素进行某种操作的方法
可以使用列表推导式来实现这个功能:
```python
my_list = ['hello', 'world', 'python']
my_string = 'CSDN'
new_list = [s + my_string for s in my_list]
print(new_list)
```
输出结果为:
```
['helloCSDN', 'worldCSDN', 'pythonCSDN']
```
阅读全文