python 字符串拼接
时间: 2023-10-28 18:57:16 浏览: 44
python分割和拼接字符串
5星 · 资源好评率100%
在 Python 中,字符串可以通过多种方式进行拼接:
1. 使用加号 `+` 连接两个字符串:
```python
str1 = "Hello"
str2 = "World"
result = str1 + " " + str2
print(result) # 输出:Hello World
```
2. 使用 `str.join()` 方法连接多个字符串:
```python
str_list = ["Hello", "World"]
result = " ".join(str_list)
print(result) # 输出:Hello World
```
3. 使用 `f` 字符串格式化:
```python
name = "Bob"
age = 20
result = f"My name is {name}, and I am {age} years old."
print(result) # 输出:My name is Bob, and I am 20 years old.
```
4. 使用 `%` 字符串格式化:
```python
name = "Bob"
age = 20
result = "My name is %s, and I am %d years old." % (name, age)
print(result) # 输出:My name is Bob, and I am 20 years old.
```
以上是一些常用的字符串拼接方法,根据实际场景选择合适的方法即可。
阅读全文