python 拼接两个字符串
时间: 2023-10-04 10:11:35 浏览: 123
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
```
阅读全文