split函数python
时间: 2023-05-12 08:03:53 浏览: 76
python中split函数的用法
可以使用Python内置的split函数来将字符串按照指定的分隔符进行分割,例如:
```python
str = "hello world"
result = str.split(" ")
print(result) # ['hello', 'world']
```
这里将字符串按照空格进行分割,得到了一个包含两个元素的列表。
阅读全文
python中split函数的用法