Python 3 内置函数 – `map()`函数
Python 3 内置函数 - map()函数
0. map() 函数
根据提供的函数对指定序列做映射。
输入:(函数, 序列)返回值:一个迭代器。
1. 使用方法
>>> help(map)
# output:
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:
共有 0 条评论