python 拼接两个字符串
时间: 2023-10-04 09:11:35 浏览: 118
python分割和拼接字符串
5星 · 资源好评率100%
在 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
```
阅读全文