对python内置map和six.moves.map的区别详解
程序员文章站
2023-01-30 13:57:48
python内置map返回的是列表,而six.moves.map返回的是iter。
>>> map(lambda a: a*2, [1, 2,...
python内置map返回的是列表,而six.moves.map返回的是iter。
>>> map(lambda a: a*2, [1, 2, 3]) [2, 4, 6] >>> m = six.moves.map(lambda a: a*2, [1, 2, 3]) >>> type(m) <type 'itertools.imap'> >>> next(m) 2 >>> next(m) 4 >>> m.next() 6
以上这篇对python内置map和six.moves.map的区别详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
python dict.get()和dict['key']的区别详解
-
Python中__init__和__new__的区别详解
-
Python中内置数据类型list,tuple,dict,set的区别和用法
-
Python 利用内置set函数对字符串和列表进行去重的方法
-
详解Python中 __get__和__getattr__和__getattribute__的区别
-
对Tensorflow中权值和feature map的可视化详解
-
python2和python3在处理字符串上的区别详解
-
对python中 math模块下 atan 和 atan2的区别详解
-
对python PLT中的image和skimage处理图片方法详解
-
对Python w和w+权限的区别详解