這篇文章給大家分享的內容是Python中關於strip使用方法的小妙招,有著一定的參考價值,有需要的朋友可以參考一下
【開胃小菜】
當提到python中strip方法,想必凡接觸過python的同行都知道它主要用來切除空格。有以下兩種方法來實現。
方法一:用內建函數
#<python> if __name__ == '__main__': str = ' Hello world ' print '[%s]' %str.strip() #</python>
方法二:呼叫string模組中方法
#<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模組
#<python>print dir(string)#</python>
#問題二、如何查看python中所有的內建函數
#<python> print dir(sys.modules['__builtin__']) #</python>
問題三、如何查看內建模組內建函數定義
#<python>printhelp(__builtins__) #</python>
以上一些都是大家平時都知道的,接下來就進入本文的主題:
【餐中硬菜】
#首先請大家來看看下列程式的運作結果:
#<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>
結果請見下頁:
運行結果:
world world wor 2h3h4 aaaadgat134f8sfewewrf
你答對了嗎? O(∩_∩)O~
如果你都答對了,在此處我奉上32個讚…
結果分析:
首先我們先查看string模組中的strip原始碼:
#<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做個說明:
#<python> str = 'hello world' print str.strip('heldo').strip() #</python> result:wor 执行步骤: elloworld lloworld oworld oworl worl wor wor
具體程式碼執行流程:
#<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使用方法的小妙招的詳細內容。更多資訊請關注PHP中文網其他相關文章!