Python的字符串拼接
时间: 2024-06-08 11:03:57 浏览: 273
python实现字符串和数字拼接
在Python中,字符串拼接可以使用"+"号或者"%s"占位符来实现。下面是两种方式的示例代码:
1. 使用"+"号实现字符串拼接:
```python
str1 = "hello"
str2 = "world"
str3 = str1 + " " + str2
print(str3) # 输出:hello world
```
2. 使用"%s"占位符实现字符串拼接:
```python
str1 = "hello"
str2 = "world"
str3 = "%s %s" % (str1, str2)
print(str3) # 输出:hello world
```
另外,还可以使用join()方法来实现字符串拼接。join()方法是将一个可迭代对象中的所有元素按照指定的分隔符连接成一个字符串。下面是示例代码:
```python
words = ['hello', 'world']
str3 = ' '.join(words)
print(str3) # 输出:hello world
```
阅读全文