python 拆分字符串
时间: 2023-07-24 19:10:56 浏览: 34
Python中拆分字符串的操作方法
5星 · 资源好评率100%
在 Python 中,你可以使用 `split()` 方法来拆分字符串。
语法如下:
```python
string.split(separator, maxsplit)
```
其中 `separator` 参数是用来指定分隔符的,默认情况下是空格;`maxsplit` 参数是用来指定拆分的次数,可选参数,默认值为 -1,表示不限制次数。
示例代码:
```python
string = "Hello, World!"
# 拆分字符串,默认按空格分隔
words = string.split()
# 拆分字符串,按逗号分隔
words = string.split(',')
# 拆分字符串,只分隔一次
words = string.split(',', 1)
```
以上代码中,`words` 即为拆分后得到的字符串列表。
阅读全文