python中jion用法
时间: 2024-03-12 07:48:57 浏览: 110
Python中json的简单使用
在 Python 中,join() 是一个字符串方法,用于将一组字符串连接起来构成一个新的字符串。它的基本语法如下:
```
new_string = separator.join(iterable)
```
其中,separator 是连接字符串的分隔符,通常是一个字符串,也可以是其他可迭代对象。iterable 是一个可迭代对象,通常是一个字符串列表或元组。join() 方法会将 iterable 中的所有字符串使用 separator 连接起来,返回一个新的字符串 new_string。
例如,假设有一个字符串列表:
```python
words = ['hello', 'world', 'python']
```
我们可以使用 join() 方法将它们连接起来,中间用空格分隔:
```python
new_string = ' '.join(words)
print(new_string) # 输出: hello world python
```
另外,如果要将一个字符串按照某个字符分隔成多个子串,也可以使用 split() 方法,例如:
```python
s = "hello,world,python"
words = s.split(',')
print(words) # 输出: ['hello', 'world', 'python']
```
阅读全文