Python中關於strip使用方法的小妙招

零到壹度
發布: 2018-04-09 15:25:23
原創
2241 人瀏覽過

這篇文章給大家分享的內容是Python中關於strip使用方法的小妙招,有著一定的參考價值,有需要的朋友可以參考一下

【開胃小菜】

當提到python中strip方法,想必凡接觸過python的同行都知道它主要用來切除空格。有以下兩種方法來實現。

方法一:用內建函數

#<python>
if __name__ == &#39;__main__&#39;:
    str = &#39; Hello world &#39;
    print &#39;[%s]&#39; %str.strip()
#</python>
登入後複製

方法二:呼叫string模組中方法

#<python>
import string
if __name__ == &#39;__main__&#39;:
    str = &#39; Hello world &#39;
    print &#39;[%s]&#39; %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[&#39;__builtin__&#39;])
 #</python>
登入後複製

問題三、如何查看內建模組內建函數定義

#<python>printhelp(__builtins__) #</python>
登入後複製

以上一些都是大家平時都知道的,接下來就進入本文的主題:

【餐中硬菜】

#首先請大家來看看下列程式的運作結果:

#<python>
if __name__ == &#39;__main__&#39;:
    str = &#39;hello world&#39; 
    print str.strip(&#39;hello&#39;)
    print str.strip(&#39;hello&#39;).strip()
    print str.strip(&#39;heldo&#39;).strip()   #sentence 1
   
    stt = &#39;h1h1h2h3h4h&#39;
    print stt.strip(&#39;h1&#39;)               #sentence 2
   
    s =&#39;123459947855aaaadgat134f8sfewewrf7787789879879&#39;
    print s.strip(&#39;0123456789&#39;)        #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 = &#39;hello world&#39;
print str.strip(&#39;heldo&#39;).strip()
#</python>
result:wor
执行步骤:
elloworld
lloworld
oworld
oworl
 worl
 wor
wor
登入後複製

具體程式碼執行流程:

#<python>
    print str.strip(&#39;h&#39;)
    print str.strip(&#39;h&#39;).strip(&#39;e&#39;)
    print str.strip(&#39;h&#39;).strip(&#39;e&#39;).strip(&#39;l&#39;)
    print str.strip(&#39;h&#39;).strip(&#39;e&#39;).strip(&#39;l&#39;).strip(&#39;d&#39;)
    print str.strip(&#39;h&#39;).strip(&#39;e&#39;).strip(&#39;l&#39;).strip(&#39;d&#39;).strip(&#39;o&#39;)
    print str.strip(&#39;h&#39;).strip(&#39;e&#39;).strip(&#39;l&#39;).strip(&#39;d&#39;).strip(&#39;o&#39;).strip(&#39;l&#39;)
    printstr.strip(&#39;h&#39;).strip(&#39;e&#39;).strip(&#39;l&#39;).strip(&#39;d&#39;).strip(&#39;o&#39;).strip(&#39;l&#39;).strip()
#</python>
登入後複製

不知道你是否看懂其中的奧妙,我是在專案經理陝奮勇幫助下,一起才發現這個規律。

現在稍微總結一下:

s.strip(chars)使用規則:

首先遍歷chars中的首個字符,看看在S中是否處於首尾位置,如果是就去掉。把去掉後的新字串設定為s,繼續循環,從chars中的首個字元開始。如果不在,直接從chars第二個字元開始。一直循環到,s中首尾字元都不在chars中,則循環終止。

關鍵點:查看chars中字元是否在S中首尾

#看完這個方法發現python原始碼開發人員太牛X了,這麼經典演算法都想的出。

【飯後糕點】

這個方法主要應用於依照特定規則移除兩端的製定字元。如果sentence3就是個很好的應用。

例如: 截取字串中兩端數字,或是取得特性字元第一次和最後一次出現之間的字串等等。

以上是Python中關於strip使用方法的小妙招的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板