1. 程式人生 > >提高pythonn性能

提高pythonn性能

表達式 ons imp ear dal () 返回 python 效率比較

 1、正則表達式中的compile方法 書籍:《正則指引》,它得用python做為介紹

  import re

obj = re.compile(‘[+-]\d+(\.\d+)?[+-][+-]\d+(\.\d+)?‘)
ret = obj.findall()
ret = obj.search()
  
re.finditer()
返回一個叠代器,提高空間和時間的效率

2、deque的insert方法效率比較列表的高很多
import collections

collections.deque

3、

提高pythonn性能