如何将字符串拼接起来
时间: 2023-07-03 21:11:44 浏览: 51
拼接字符串
要将字符串拼接起来,可以使用加号运算符或者 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() 方法的参数是一个字符串列表,join() 方法会将列表中的字符串按照指定的分隔符拼接起来。在上面的例子中,我们指定使用空格作为分隔符。
阅读全文