Python(技巧和坑)

Python中幾個內(nèi)置函數(shù)

#兩個list,取(x - y) + (y - x)
x=[{'a': 1, 'b': 2}, {'c': 3}, {'d': 4}]  
y=[{'a': 1}, {'c': 3}, {'e': 5}]

filter(lambda z: (x+y).count(z)<2, (x+y))  
#flatten out nested sublist
#result: [ 1, 2, 3, 4, 5 ]
import operator  
reduce( operator.concat, [ [ 1, 2 ], [ 3, 4 ], [ ], [ 5 ] ], [ ] )  

#多項式求和
import operator  
def evaluate (a, x):  
       xi = map( lambda i: x**i, range( 0, len(a)))
       axi = map(operator.mul, a, xi)
       return reduce( operator.add, axi, 0 )
#數(shù)據(jù)庫SQL
reduce( max, map( Camera.pixels, filter(  
        lambda c: c.brand() == "Nikon", cameras ) ) )

#maybe equals
SELECT max(pixels)  
FROM cameras  
WHERE brand = “Nikon”

#There.
#cameras is a sequence
#where clause is a filter
#pixels is a map
#max is a reduce
#一行并發(fā)
import urllib2  
from multiprocessing.dummy import Pool as ThreadPool

urls = [  
           'http://www.python.org',
           'http://www.google.com',
           'http://www.baidu.com',
           'http://www.python.org/community/',
           'http://www.saltstack.com'
           ]

#pool = ThreadPool()
pool = ThreadPool(4) # Sets the pool size to 4

result = pool.map(urllib2.urlopen, urls)  
pool.close()  
pool.join()  
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
【社區(qū)內(nèi)容提示】社區(qū)部分內(nèi)容疑似由AI輔助生成,瀏覽時請結(jié)合常識與多方信息審慎甄別。
平臺聲明:文章內(nèi)容(如有圖片或視頻亦包括在內(nèi))由作者上傳并發(fā)布,文章內(nèi)容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務(wù)。

相關(guān)閱讀更多精彩內(nèi)容

友情鏈接更多精彩內(nèi)容