您好,登錄后才能下訂單哦!
??? 首先,我們來看下map()內置函數的用法:
>>> help(map)
Help on class map in module builtins:class map(object)
? |? 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.
? |?
? |? Methods defined here:
? |?
? |? __getattribute__(self, name, /)
? |????? Return getattr(self, name).
? |?
? |? __iter__(self, /)
? |????? Implement iter(self).
? |?
? |? __next__(self, /)
? |????? Implement next(self).
? |?
? |? __reduce__(...)
? |????? Return state information for pickling.
? |?
? |? ----------------------------------------------------------------------
? |? Static methods defined here:
? |?
? |? __new__(*args, **kwargs) from builtins.type
? |????? Create and return a new object.? See help(type) for accurate signature.
? map()內置函數有兩個參數,第一個參數為函數,第二個參數為可迭代對象,將可迭代對象中的每個元素作為函數的
參數進行運算,可以看到,第二個參數亦是一個收集參數,所以當第二個元素為收集參數時,其支持多個可迭代對象,
可迭代對象會依次取一個元素組成一個元組,然后傳遞給函數進行運算,當可迭代對象長度不一致時,到最短的那個
終止
例:
>>> list(map(lambda x:x**2,range(10)))
[0, 1, 4, 9, 16, 25, 36, 49, 64, 81]
>>> list(map(lambda x,y:x+y,[1,8,10],[8,6,3,7,5,4]))
[9, 14, 13]
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。