python中strip_Python中strip方法的妙用

【开胃小菜】

当提到python中strip方法,想必凡接触过python的同行都知道它主要用来切除空格。有下面两种方法来实现。

方法一:用内置函数

#

if __name__ == '__main__':

str = ' Hello world '

print '[%s]' %str.strip()

#

方法二:调用string模块中方法

#

import string

if __name__ == '__main__':

str = ' Hello world '

print '[%s]' %string.strip(str)

#

不知道大家是否知道这两种调用有什么差别?下面是个人一些看法

Ø str.strip()是调用python的内置函数,string.strip(str)是调用string模块中的方法

Ø string.strip(str)是在string模块定义的。而str.strip()是在builtins模块中定义的

问题一: 怎样查看一个模块中方法是否在内置模块有定义?

用dir(模块名)看是否有'__builtins__'属性。

比如:查看string模块

# print dir(string)

#

问题二、怎样查看python中全部的内置函数

#

print dir(sys.modules['__builtin__'])

#

问题三、怎样查看内置模块中内置函数定义

# print help(__builtins__)

#

以上一些都是大家平时都知道的,接下来就进入本文的主题:

【饭中硬菜】

首先请大家看一下下列程序的执行结果:

#

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

#

结果见下页:

执行结果:

world

world

wor

2h3h4

aaaadgat134f8sfewewrf

你答对了吗?O(∩_∩)O~

假设你都答对了,在此处我奉上32个赞 …

结果分析:

首先我们查看一下string模块中的strip源代码:

#

# 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)

#

冒昧的翻译一下: 该方法用来去掉首尾的空格和tab。返回一个去掉空格的S字符串的拷贝。假设參数chars不为None有值,那就去掉在chars中出现的全部字符。假设chars是unicode,S在操作之前先转化为unicode.

以下就上面里子中的sentence1 \2 \3做个说明:

#

str = 'hello world'

print str.strip('heldo').strip()

#

result:wor

运行步骤:

elloworld

lloworld

oworld

oworl

worl

wor

wor

详细代码运行流程:

#

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()

#

不知道你是否看懂当中的奥妙,我是在项目经理陕奋勇帮助下,一起才发现这个规律。

如今略微总结一下:

s.strip(chars)使用规则:

首先遍历chars中的首个字符。看看在S中是否处于首尾位置,假设是就去掉。把去掉后的新字符串设置为s,继续循环,从chars中的首个字符開始。假设不在。直接从chars第二个字符開始。一直循环到,s中首尾字符都不在chars中。则循环终止。

关键点:查看chars中字符是否在S中首尾

看完这种方法发现python源代码开发者太牛X了,这么经典算法都想的出。

【饭后糕点】

这种方法主要应用于依照特定规则去除两端的制定字符。假设sentence3就是个非常好的应用。

比如: 截取字符串中两端数字。或者获取特性字符第一次和最后一次出现之间的字符串等等。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值