python 两个list的字符串对应拼接
时间: 2023-05-15 13:05:58 浏览: 398
可以使用zip函数将两个list中的元素一一对应,然后使用字符串的join方法将对应的字符串拼接起来。示例代码如下:
```
list1 = ['hello', 'world']
list2 = ['python', 'is', 'awesome']
result = ''.join([x+y for x,y in zip(list1, list2)])
print(result)
```
输出结果为:
```
hellopythonworldisawesome
```
相关问题
python 拼接两个字符串
在 Python 中,可以通过加号 (+) 拼接两个字符串。例如:
```
str1 = "Hello"
str2 = "world"
result = str1 + " " + str2
print(result)
```
输出结果为:
```
Hello world
```
除了加号,还可以使用 join() 方法来拼接多个字符串。例如:
```
str_list = ["Hello", "world"]
result = " ".join(str_list)
print(result)
```
输出结果同样为:
```
Hello world
```
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']
```
阅读全文