【python】尋找字串時哪一種寫法出結果速度更快?

來源:互聯網
上載者:User

標籤:

現有一文本,每行一條資料,實現這行資料中有所要關鍵字則打出這行

import syswith open(sys.argv[1]) as alls:alls2 = [_.strip() for _ in alls]for _ in alls2:if sys.argv[2] in _:print _

一開始我是這麼寫的,後來覺得既不美觀,速度又慢(運行花了2.31 s),進行了改寫

with open( sys.argv[1] ) as alls:results = [ _.strip() for _ in alls if sys.argv[2] in _.strip() ]print '\n'.join( results )

運行耗時1.54 s,快了34%,效果不錯

<pre name="code" class="python">with open( sys.argv[1] ) as alls:results = [ _.strip() for _ in alls if sys.argv[2] in _.strip() ]


for result in results:print result

print '\n'.join( results )
打出時太快,沒有瀑布的感覺,改成

for result in results:print result
已耗用時間1.59 s居然慢了

後來用map函數改寫

def fetch( _ ):_2 = _.strip()global searchPif searchP in _2:pass#print _2

map( fetch, list)

居然更慢了,耗時2 s

用上虛擬函數吧

x = map( lambda _: _.strip() if searchP in _.strip() else None, alls )

噩夢啊,更慢了 2.1 s

最後兼顧美觀與速度,用了filter函數

xs = filter( lambda _: True if searchP in _.strip() else False, alls )for x in xs:if x:print x,
耗時1.67 s,雖然還沒傳統的快,但技巧性已經提高了,效率就先放下吧。

著作權聲明:本文為博主原創文章,未經博主允許不得轉載。

【python】尋找字串時哪一種寫法出結果速度更快?

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.