python 分割字符
时间: 2023-10-16 14:13:24 浏览: 57
字符分割函数
在 Python 中,可以使用 `str.split()` 函数来分割字符串。该函数会根据指定的分隔符将字符串分割为多个部分,并以列表的形式返回。
例如:
```
>>> s = "apple,banana,cherry"
>>> parts = s.split(",")
>>> print(parts)
['apple', 'banana', 'cherry']
```
如果不指定分隔符,则默认以空格作为分隔符:
```
>>> s = "apple banana cherry"
>>> parts = s.split()
>>> print(parts)
['apple', 'banana', 'cherry']
```
阅读全文