python concatenate
时间: 2023-04-28 10:03:44 浏览: 153
Python数组拼接np.concatenate实现过程
Python中的字符串拼接可以使用加号(+)进行。例如:
```
string1 = "hello"
string2 = "world"
string3 = string1 + " " + string2
print(string3)
# Output: "hello world"
```
也可以使用字符串的join()方法进行拼接,例如:
```
list = ["hello", "world"]
string = " ".join(list)
print(string)
# Output: "hello world"
```
注意,如果在拼接很多字符串时,使用加号(+)进行拼接效率会较低,此时建议使用join()方法。
阅读全文