
描述

split()通过指定分隔符对字符串进行切片,如果参数 num 有指定值,则仅分隔 num+1 个子字符串
语法
split()方法语法:
str.split(str="", num=string.count(str))参数
sep — 可选参数,指定的分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等。
count — 可选参数,分割次数,默认为分隔符在字符串中出现的总次数。
返回值
返回分割后的字符串列表。
实例
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', '!!!']tst = "Google#Runoob#Taobao#Facebook"
print(tst.split("#", 2))
# 结果为
# ['Google', 'Runoob', 'Taobao#Facebook']
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
如需转载请保留出处:https://bianchenghao.cn/hz/144406.html