python 拼接字符串
时间: 2023-07-24 21:42:00 浏览: 67
Python3字符串学习教程
在 Python 中,可以使用 "+" 号或者 "{}" 格式化字符串的方式来拼接字符串。举例如下:
使用 "+" 号:
```
str1 = "Hello"
str2 = "world"
result = str1 + " " + str2
print(result)
```
输出结果为:
```
Hello world
```
使用 "{}" 格式化字符串:
```
str1 = "Hello"
str2 = "world"
result = "{} {}".format(str1, str2)
print(result)
```
输出结果为:
```
Hello world
```
阅读全文