本文摘自php中文网,作者零到壹度,侵删。
本篇文章给大家分享的内容是Python中关于strip使用方法的小妙招,有着一定的参考价值,有需要的朋友可以参考一下【开胃小菜】
当提到python中strip方法,想必凡接触过python的同行都知道它主要用来切除空格。有以下两种方法来实现。
方法一:用内置函数
1 2 3 4 5 | #<python>
if __name__ == '__main__' :
str = ' Hello world '
print '[%s]' %str.strip()
#</python>
|
方法二:调用string模块中方法
1 2 3 4 5 6 | #<python>
import string
if __name__ == '__main__' :
str = ' Hello world '
print '[%s]' %string.strip(str)
#</python>
|
不知道大家是否知道这两种调用有什么区别?以下是个人一些看法
? str.strip()是调用python的内置函数,string.strip(str)是调用string模块中的方法
? string.strip(str)是在string模块定义的。而str.strip()是在builtins模块中定义的
问题一: 如何查看一个模块中方法是否在内置模块有定义?
用dir(模块名)看是否有'__builtins__'属性。
例如:查看string模块
1 | #<python> print dir(string)#</python>
|
问题二、如何查看python中所有的内置函数
1 2 3 | #<python>
print dir(sys.modules[ '__builtin__' ])
#</python>
|
问题三、如何查看内置模块中内置函数定义
1 | #<python>printhelp(__builtins__) #</python>
|
以上一些都是大家平时都知道的,接下来就进入本文的主题:
【饭中硬菜】
首先请大家看一下下列程序的运行结果:
1 2 3 4 5 6 7 8 9 10 11 12 13 | #<python>
if __name__ == '__main__' :
str = 'hello world'
print str.strip( 'hello' )
print str.strip( 'hello' ).strip()
print str.strip( 'heldo' ).strip() #sentence 1
stt = 'h1h1h2h3h4h'
print stt.strip( 'h1' ) #sentence 2
s = '123459947855aaaadgat134f8sfewewrf7787789879879'
print s.strip( '0123456789' ) #sentence 3
#</python>
|
结果见下页:
运行结果:
1 2 3 4 5 | world
world
wor
2h3h4
aaaadgat134f8sfewewrf
|
你答对了吗?O(∩_∩)O~
如果你都答对了,在此处我奉上32个赞 …
结果分析:
首先我们查看一下string模块中的strip源码:
1 2 3 4 5 6 7 8 9 10 11 | #<python>
# Strip leading and trailing tabs and spaces
def strip(s, chars=None):
"" "strip(s [,chars]) -> string
Return a copy of the string swith leading and trailing
whitespace removed.
If chars is given and not None,remove characters in chars instead.
If chars is unicode, S will beconverted to unicode before stripping.
"" "
returns.strip(chars)
#</python>
|
冒昧的翻译一下: 该方法用来去掉首尾的空格和tab。返回一个去掉空格的S字符串的拷贝。如果参数chars不为None有值,那就去掉在chars中出现的所有字符。如果chars是unicode,S在操作之前先转化为unicode.
下面就上面里子中的sentence1 \2 \3做个说明:
1 2 3 4 5 6 7 8 9 10 11 12 13 | #<python>
str = 'hello world'
print str.strip( 'heldo' ).strip()
#</python>
result:wor
执行步骤:
elloworld
lloworld
oworld
oworl
worl
wor
wor
|
具体代码执行流程:
1 2 3 4 5 6 7 8 9 | #<python>
print str.strip( 'h' )
print str.strip( 'h' ).strip( 'e' )
print str.strip( 'h' ).strip( 'e' ).strip( 'l' )
print str.strip( 'h' ).strip( 'e' ).strip( 'l' ).strip( 'd' )
print str.strip( 'h' ).strip( 'e' ).strip( 'l' ).strip( 'd' ).strip( 'o' )
print str.strip( 'h' ).strip( 'e' ).strip( 'l' ).strip( 'd' ).strip( 'o' ).strip( 'l' )
printstr.strip( 'h' ).strip( 'e' ).strip( 'l' ).strip( 'd' ).strip( 'o' ).strip( 'l' ).strip()
#</python>
|
不知道你是否看懂其中的奥妙,我是在项目经理陕奋勇帮助下,一起才发现这个规律。
现在稍微总结一下:
s.strip(chars)使用规则:
首先遍历chars中的首个字符,看看在S中是否处于首尾位置,如果是就去掉。把去掉后的新字符串设置为s,继续循环,从chars中的首个字符开始。如果不在,直接从chars第二个字符开始。一直循环到,s中首尾字符都不在chars中,则循环终止。
关键点:查看chars中字符是否在S中首尾
看完这个方法发现python源码开发人员太牛X了,这么经典算法都想的出。
【饭后糕点】
这个方法主要应用于按照特定规则去除两端的制定字符。如果sentence3就是个很好的应用。
例如: 截取字符串中两端数字,或者获取特性字符第一次和最后一次出现之间的字符串等等。
以上就是Python中关于strip使用方法的小妙招的详细内容,更多文章请关注木庄网络博客!!
相关阅读 >>
Python如何把列表变字典
Python小课值吗
在Python3.x中可以使用中文作为变量名吗
Python怎么变成中文版
Python求绝对值的方法有哪些
深入学习Python之魔法方法
Python面试常见问题有哪些
会java再去学Python容易吗
Python创建数值列表的方法
Python编程游戏有哪些
更多相关阅读请进入《Python》频道 >>
人民邮电出版社
python入门书籍,非常畅销,超高好评,python官方公认好书。
转载请注明出处:木庄网络博客 » Python中关于strip使用方法的小妙招