split()方法
描述
split()通过指定分隔符对字符串进行切片,如果参数 num 有指定值,则仅分隔 num+1 个子字符串
语法
split()方法语法:
str.split(str="", num=string.count(str))
参数
- str -- 分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
- num -- 分割次数。默认为 -1, 即分隔所有。
返回值
返回分割后的字符串列表。
实例
以下实例展示了split()函数的使用方法:
str = "this is string example....wow!!!" print(str.split()) print(str.split("i", 1)) print(str.split("w")) # 结果为 # [‘this‘, ‘is‘, ‘string‘, ‘example....wow!!!‘] # [‘th‘, ‘s is string example....wow!!!‘] # [‘this is string example....‘, ‘o‘, ‘!!!‘]
以下实例以 # 号为分隔符,指定第二个参数为 2,返回三个参数列表。
tst = "Google#Runoob#Taobao#Facebook" print(tst.split("#", 2)) # 结果为 # [‘Google‘, ‘Runoob‘, ‘Taobao#Facebook‘]
原文地址:https://www.cnblogs.com/xiaohei001/p/10163092.html
时间: 2024-10-17 14:54:51