将两个字符串连接起来
时间: 2024-02-15 09:03:08 浏览: 74
好的,连接两个字符串的方法有很多种,以下是几种常见的方法:
1. 使用 `+` 运算符
```python
str1 = "Hello"
str2 = "world"
result = str1 + str2
print(result) # 输出结果为:Helloworld
```
2. 使用 `join()` 方法
```python
str1 = "Hello"
str2 = "world"
result = "".join([str1, str2])
print(result) # 输出结果为:Helloworld
```
3. 使用格式化字符串
```python
str1 = "Hello"
str2 = "world"
result = "{}{}".format(str1, str2)
print(result) # 输出结果为:Helloworld
```
这些方法中,第一种方法使用最为广泛,也是最常用的方法。
阅读全文