您好,登錄后才能下訂單哦!
Python中如何使用map函數,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
用法
map(func, seq1[, seq2,…])
map接收兩個參數,第一個參數是函數名,第二個是一個或多個可迭代的序列,返回的是一個集合。運行時,map()將func作用于序列中的每一個元素,并將結果作為一個list返回。如果func為None,作用同zip()。
2.1 當seq 只有一個時,map函數返回將func函數作用于 seq每個元素并返回一個新的list集合,
比如需要將seq的元素乘以2 ,使用map可以寫成
In [4]: l=[1, 2, 3, 4, 5, 6, 7, 8, 9]
In [5]: map(lambda x:x*2 ,l)
Out[5]: [2, 4, 6, 8, 10, 12, 14, 16, 18]
如果使用函數來做:
rest=[]
for i in l:
rest.append(i*2)
print rest
map作為高階函數,能夠把運算規則抽象化,顯然map 更精簡。
2.2 當有多個seq時,map可以并行的取每個seq對應的第M個元素 seqN[M],進行計算。
例子:
In [9]: map(lambda x , y : x * y, [2,4,6],[3,2,1])
Out[9]: [6, 8, 6]
記得多個seq的元素個數必須一致 不然會報錯
In [1]: print map(lambda x , y : x ** y, [2,4,6],[3,2,1])
[8, 16, 6]
seq1=[2,4,6] ,seq2=[3,2] 元素個數不一致則報錯。
In [3]: print map(lambda x , y : x ** y, [2,4,6],[3,2])
---------------------------------------------------------------------------
TypeError Traceback (most recent call last)
<ipython-input-3-d075c46afd0b> in <module>()
----> 1 print map(lambda x , y : x ** y, [2,4,6],[3,2])
<ipython-input-3-d075c46afd0b> in <lambda>(x, y)
----> 1 print map(lambda x , y : x ** y, [2,4,6],[3,2])
TypeError: unsupported operand type(s) for ** or pow(): 'int' and 'NoneType'
In [4]:
2.3 map在多進程中的應用。
#!/usr/bin/env python
# encoding: utf-8
"""
author: yangyi@youzan.com
time: 2017/7/16 上午10:42
func: 參考網絡上的例子
"""
import urllib2
from multiprocessing.dummy import Pool as ThreadPool
urls = [
'http://www.python.org',
'http://www.python.org/about/',
'http://www.onlamp.com/pub/a/python/2003/04/17/metaclasses.html',
'http://www.python.org/doc/',
'http://www.python.org/download/',
'http://www.python.org/getit/',
'http://www.python.org/community/',
'https://wiki.python.org/moin/',
'http://planet.python.org/',
'https://wiki.python.org/moin/LocalUserGroups',
'http://www.python.org/psf/',
'http://docs.python.org/devguide/',
'http://www.python.org/community/awards/'
]
# Make the Pool of workers
pool = ThreadPool(4)
# Open the urls in their own threads
# and return the results
results = pool.map(urllib2.urlopen, urls)
#close the pool and wait for the work to finish
pool.close()
pool.join()
關于Python中如何使用map函數問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。