python连接字符串
时间: 2023-08-31 19:10:23 浏览: 76
Python中连接字符串可以使用加号(+)或者格式化字符串(f-string)。
使用加号连接字符串示例:
```
str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
print(result) # 输出:Hello World
```
使用格式化字符串示例:
```
str1 = "Hello"
str2 = "World"
result = f"{str1} {str2}"
print(result) # 输出:Hello World
```
阅读全文