python中spilt的用法
时间: 2023-06-21 19:10:51 浏览: 161
python中split函数的用法
`split()` 是 Python 中字符串类型的一个内置方法,主要用于根据指定的分隔符将字符串分割成一个列表。
`split()` 方法的语法如下:
```
string.split(separator, maxsplit)
```
其中,`separator` 参数是分隔符,如果不指定,默认使用空格作为分隔符;`maxsplit` 参数是最大切割次数,如果不指定,默认切割全部。
下面是一些示例:
```
# 默认使用空格作为分隔符
string = "hello world"
result = string.split()
print(result) # ['hello', 'world']
# 使用指定的分隔符
string = "apple,banana,orange"
result = string.split(",")
print(result) # ['apple', 'banana', 'orange']
# 指定最大切割次数
string = "apple,banana,orange,grape"
result = string.split(",", 2)
print(result) # ['apple', 'banana', 'orange,grape']
```
需要注意的是,`split()` 方法返回的是一个列表对象,而非字符串对象。如果需要将列表中的元素重新拼接成字符串,可以使用 `join()` 方法。
阅读全文