python-reduce-神秘的第三參數

來源:互聯網
上載者:User

reduce竟然有第三個參數

廖雪峰老師的reduce教程裡面有三個參數的那個代碼。

from functools import reduceCHAR_TO_FLOAT = {    '0': 0,    '1': 1,    '2': 2,    '3': 3,    '4': 4,    '5': 5,    '6': 6,    '7': 7,    '8': 8,    '9': 9,    '.': -1}def str2float(s):    nums = map(lambda ch: CHAR_TO_FLOAT[ch], s)##1,2,3,.,4,5,6    point = 0    def to_float(f, n):        nonlocal point        if n == -1:            point = 1            return f        if point == 0:            return f * 10 + n        else:            point = point * 10            return f + n / point    return reduce(to_float, nums, 0.0)print(str2float('0'))print(str2float('123.456'))print(str2float('123.45600'))print(str2float('0.1234'))print(str2float('.1234'))print(str2float('120.0034'))

那麼reduce這個是什麼意思了。


根據官方文檔的意思,reduce有三個參數,第一參數是function,也就是方法,第二個參數是sequence,也就是序列,第三個是initial初始化。

翻譯一下上面的內容:這種方法可以實現從左至右使用function累積的方法。最後會得到一個值。。。

如果有第三個參數,會續接在第二個參數的左邊,如果沒有,不影響第二個參數。




相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.