Python 扯淡的Map-Reduce

來源:互聯網
上載者:User

發現python具有類似Hadoop中的Map-reduce概念的標準函數,於是變搞來玩玩,發現還是蠻好玩的,雖然功能簡陋了點,不過該做的都做了。

map(func, *iterables) --> map object    Make an iterator that computes the function using arguments from    each of the iterables.  Stops when the shortest iterable is exhausted.

func是一個函數,該函數具有的參數個數根據後面iterables個數來確定,對iterables中的每個元素都作為參數調用一次func函數,並且將結果返回。也就是說調用了多少次func,就會返回多少次結果。

 該map的實現是一個採用的是產生器,也就是說調用一次__next__(),才會調用一次函數返回結果。

def func(x,y):    return x*y*2list=[1,2,3,4,5]result=map(func,list,list)print(result.__next__())for r in result:    print(r)

結果:2 8 18 32 50

其實map函數我們自己也可以實現一個版本:

def map(func,*iters):    for it in zip(*iters):        yield func(*it)#一定要星號*,表示需要將it元組各個元素作為多個參數,而不是將整個列表作為一個參數

註:以上記過python 3.2測試通過,python 3以上版本apply(),callable(),exefile(),file(),reduce(),reload()等方法都被移除了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.