91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中如何使用map函數

發布時間:2021-07-14 16:11:59 來源:億速云 閱讀:250 作者:Leah 欄目:編程語言

Python中如何使用map函數,針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。


用法

  1. map(func, seq1[, seq2,…])

map接收兩個參數,第一個參數是函數名,第二個是一個或多個可迭代的序列,返回的是一個集合。運行時,map()將func作用于序列中的每一個元素,并將結果作為一個list返回。如果func為None,作用同zip()。
2.1 當seq 只有一個時,map函數返回將func函數作用于 seq每個元素并返回一個新的list集合,
Python中如何使用map函數
比如需要將seq的元素乘以2 ,使用map可以寫成

  1. In [4]: l=[1, 2, 3, 4, 5, 6, 7, 8, 9]

  2. In [5]: map(lambda x:x*2 ,l)

  3. Out[5]: [2, 4, 6, 8, 10, 12, 14, 16, 18]

如果使用函數來做:

  1. rest=[]

  2. for i in l:

  3.   rest.append(i*2)

  4. print rest

map作為高階函數,能夠把運算規則抽象化,顯然map 更精簡。

2.2 當有多個seq時,map可以并行的取每個seq對應的第M個元素 seqN[M],進行計算。
Python中如何使用map函數
例子:

  1. In [9]: map(lambda x , y : x * y, [2,4,6],[3,2,1])

  2. Out[9]: [6, 8, 6]

記得多個seq的元素個數必須一致 不然會報錯 

  1. In [1]: print map(lambda x , y : x ** y, [2,4,6],[3,2,1])

  2. [8, 16, 6]

  3. seq1=[2,4,6] ,seq2=[3,2] 元素個數不一致則報錯。

  4. In [3]: print map(lambda x , y : x ** y, [2,4,6],[3,2])

  5. ---------------------------------------------------------------------------

  6. TypeError                                 Traceback (most recent call last)

  7. <ipython-input-3-d075c46afd0b> in <module>()

  8. ----> 1 print map(lambda x , y : x ** y, [2,4,6],[3,2])

  9. <ipython-input-3-d075c46afd0b> in <lambda>(x, y)

  10. ----> 1 print map(lambda x , y : x ** y, [2,4,6],[3,2])

  11. TypeError: unsupported operand type(s) for ** or pow(): 'int' and 'NoneType'

  12. In [4]:

2.3 map在多進程中的應用。

  1. #!/usr/bin/env python

  2. # encoding: utf-8

  3. """

  4. author: yangyi@youzan.com

  5. time: 2017/7/16 上午10:42

  6. func: 參考網絡上的例子 

  7. """

  8. import urllib2

  9. from multiprocessing.dummy import Pool as ThreadPool

  10. urls = [

  11.         'http://www.python.org',

  12.         'http://www.python.org/about/',

  13.         'http://www.onlamp.com/pub/a/python/2003/04/17/metaclasses.html',

  14.         'http://www.python.org/doc/',

  15.         'http://www.python.org/download/',

  16.         'http://www.python.org/getit/',

  17.         'http://www.python.org/community/',

  18.         'https://wiki.python.org/moin/',

  19.         'http://planet.python.org/',

  20.         'https://wiki.python.org/moin/LocalUserGroups',

  21.         'http://www.python.org/psf/',

  22.         'http://docs.python.org/devguide/',

  23.         'http://www.python.org/community/awards/'

  24.         ]


  25. # Make the Pool of workers

  26. pool = ThreadPool(4)

  27. # Open the urls in their own threads

  28. # and return the results

  29. results = pool.map(urllib2.urlopen, urls)

  30. #close the pool and wait for the work to finish

  31. pool.close()

  32. pool.join()

關于Python中如何使用map函數問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

米易县| 嘉祥县| 穆棱市| 金门县| 万州区| 崇义县| 上犹县| 连山| 万全县| 寿阳县| 林周县| 团风县| 阜新市| 大新县| 大城县| 冷水江市| 石门县| 温泉县| 常德市| 腾冲县| 平山县| 海盐县| 开平市| 长寿区| 吉隆县| 德钦县| 盐池县| 科尔| 万全县| 东乡| 都兰县| 台东县| 富顺县| 青岛市| 柳林县| 麦盖提县| 名山县| 平舆县| 阳泉市| 定结县| 兴山县|