python字符串拼接
时间: 2023-10-13 21:21:03 浏览: 81
Python字符串拼接、截取及替换方法总结分析
5星 · 资源好评率100%
在 Python 中,可以使用 + 运算符或者字符串的 join 方法来拼接字符串。
使用 + 运算符拼接字符串示例:
```
str1 = "hello"
str2 = "world"
result = str1 + " " + str2
print(result) # 输出: hello world
```
使用字符串的 join 方法拼接字符串示例:
```
str_list = ["hello", "world"]
result = " ".join(str_list)
print(result) # 输出: hello world
```
其中,join 方法的参数是一个可迭代对象,例如列表或者元组,它将可迭代对象中的每个元素连接起来并返回一个新的字符串。在上面的示例中,我们将列表中的两个字符串用空格连接起来。
阅读全文