一个函数,将两个字符串连接。
时间: 2024-03-01 12:52:00 浏览: 98
你可以使用字符串拼接运算符 "+" 来连接两个字符串。例如,若要将字符串 "hello" 和 "world" 连接起来,可以使用以下代码:
```python
string1 = "hello"
string2 = "world"
result = string1 + string2
print(result) # 输出 "helloworld"
```
你也可以使用字符串的 join() 方法来连接多个字符串,该方法可以将一个可迭代对象中的所有元素连接成一个字符串,其语法如下:
```python
separator.join(iterable)
```
其中,`separator` 是分隔符,`iterable` 是一个可迭代对象,例如列表或元组。在连接的过程中,分隔符会被插入到每个元素之间。如果你要连接的对象不是字符串,需要先将其转换为字符串。以下是一个例子:
```python
words = ["hello", "world", "python"]
result = " ".join(str(word) for word in words)
print(result) # 输出 "hello world python"
```
在这个例子中,我们使用空格作为分隔符,将列表 `words` 中的元素连接起来,并将其转换为字符串。
阅读全文