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:

Python 3 内置函数 – `map()`函数最先出现在Python成神之路

版权声明:
作者:siwei
链接:https://www.techfm.club/p/26925.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>