python split函数
Posted myrj
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python split函数相关的知识,希望对你有一定的参考价值。
Python split()方法
Python split() 通过指定分隔符对字符串进行切片,如果参数 num 有指定值,则分隔 num+1 个子字符串
str.split(str="", num=string.count(str)).
参数
str -- 分隔符,默认为所有的空字符,包括空格、换行(
)、制表符( )等。
num -- 分割次数。默认为 -1, 即分隔所有。
返回分割后的字符串列表。
例子:
i="https://www.vgirls.com/13404.html"
print(i.split(‘/‘)[-1])
print(i.split(‘.‘)[-1])
print(i.split(‘//‘)[-1])
#for i in urla:
#print(i)
urlb="想把夏日的阳光寄给冬日的你"
print(urlb[-4:])
结果:
13404.html
html
www.vgirls.com/13404.html
冬日的你
>>>
以上是关于python split函数的主要内容,如果未能解决你的问题,请参考以下文章