Python:strip(),split()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Python:strip(),split()相关的知识,希望对你有一定的参考价值。

1、strip()函数

strip()是删除‘()‘里面的字符,当()为空时,默认删除空白符(包括‘\n‘,‘\r‘,‘\t‘,‘‘)

(1)s.strip(rm)        删除s字符串中开头、结尾处,位于rm删除序列的字符

(2)s.lstrip(rm)       删除s字符串中开头处,位于 rm删除序列的字符

(3)s.rstrip(rm)      删除s字符串中结尾处,位于 rm删除序列的字符

 2、split函数

split是分割函数,将字符串分割成“字符”,保存在一个列表中。

1 a=a b c d
2 b=a.split()
3 print(b)

输出:[‘a‘, ‘b‘, ‘c‘, ‘d‘]

默认不带参数为空格分割。之所以为双引号的“字符”,因为实际python没有字符的。

带参数根据实际需求进行分割

1 a = www.baidu.com
2 b = a.split(.)
3 print(b)

输出:[‘www‘, ‘baidu‘, ‘com‘]

还可以带上数字参数,表示“切几刀”

1 a = www.baidu.com
2 b = a.split(.,1)#以.切1刀,分成2块
3 print(b)

输出:[‘www‘, ‘baidu.com‘]

 

以上是关于Python:strip(),split()的主要内容,如果未能解决你的问题,请参考以下文章

Python进阶---python strip() split()函数实战(转)

15Java常用类(数组工具类Arrays)基本类型包装类(Integer类)正则表达式String的split(String regex)和replaceAll(String regex, (代码片

Python strip不剥离空格[closed]

python strip() 函数探究

python strip() 方法

Python:strip 函数的陷阱