python之字符串split和rsplit的方法
2021-05-06 07:28
标签:空格 换行 split() 实例 方法 strip print strip() 列表 split()方法通过指定分隔符对字符串进行切片,如果参数num有指定值,则分隔num+1个子字符串,默认分隔符为所有空字符,包括空格、换行(\n)、制表符(\t)等 rstrip()方法通过 sep -- 可选参数,指定的分隔符,默认为所有的空字符,包括空格、换行(\n)、制表符(\t)等 count -- 可选参数,分割次数,默认为分隔符在字符串中出现的总次数 返回分割后的字符串列表,可以用新字符串来接收 python之字符串split和rsplit的方法 标签:空格 换行 split() 实例 方法 strip print strip() 列表 原文地址:https://www.cnblogs.com/Heroge/p/13191005.html1.描述
2.语法
str.split([sep=None][,count=S.count(sep)])
str.rsplit([sep=None][,count=S.count(sep)])
3.参数
4.返回值
5.实例
str1 = "Hao123 hao456 hAo789"
new_str = str1.split()
new_str2 = str1.split(‘ ‘, 1)
new_str3 = str1.rsplit(‘ ‘, 1)
print(new_str)
print(new_str2)
print(new_str3)
#输出结果如下:
[‘Hao123‘, ‘hao456‘, ‘hAo789‘]
[‘Hao123‘, ‘hao456 hAo789‘]
[‘Hao123 hao456‘, ‘hAo789‘]
上一篇:JAVA自定义异常使用方法
文章标题:python之字符串split和rsplit的方法
文章链接:http://soscw.com/index.php/essay/83106.html