python字符串過(guò)濾性能比較5種方法比較
總共比較5種方法。直接看代碼:
import random import time import os import string base = string.digits+string.punctuation total = 100000 def loop(ss): """循環(huán)""" rt = '' for c in ss: if c in '0123456789': rt = rt + c return rt def regular(ss): """正則表達(dá)式""" import re rt = re.sub(r'\D', '', ss) return rt def filter_mt(ss): """函數(shù)式""" return filter(lambda c:c.isdigit(), ss) def list_com(ss): """列表生成式""" isdigit = {'0': 1, '1': 1, '2': 1, '3': 1, '4': 1, '5':1, '6':1, '7':1, '8':1, '9':1}.has_key return ''.join([x for x in ss if isdigit(x)]) def str_tran(ss): """string.translate()""" table = string.maketrans('', '') ss = ss.translate(table,string.punctuation) return ss if __name__ == '__main__': lst = [] for i in xrange(total): num = random.randrange(10, 50) ss = '' for j in xrange(num): ss = ss + random.choice(base) lst.append(ss) s1 = time.time() map(loop,lst) print "loop: ",time.time() - s1 print '*'*20 s1 = time.time() map(regular, lst) print "regular: ", time.time() - s1 print '*' * 20 s1 = time.time() map(str_tran, lst) print "str_tran: ", time.time() - s1 print '*' * 20 s1 = time.time() map(filter_mt, lst) print "filter_mt: ", time.time() - s1 print '*' * 20 s1 = time.time() map(list_com, lst) print "list_com: ", time.time() - s1
感謝閱讀,希望能幫助到大家,謝謝大家對(duì)本站的支持!
更多文章、技術(shù)交流、商務(wù)合作、聯(lián)系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號(hào)聯(lián)系: 360901061
您的支持是博主寫作最大的動(dòng)力,如果您喜歡我的文章,感覺(jué)我的文章對(duì)您有幫助,請(qǐng)用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點(diǎn)擊下面給點(diǎn)支持吧,站長(zhǎng)非常感激您!手機(jī)微信長(zhǎng)按不能支付解決辦法:請(qǐng)將微信支付二維碼保存到相冊(cè),切換到微信,然后點(diǎn)擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對(duì)您有幫助就好】元
