对python内置map和six.moves.map的区别详解
程序员文章站
2022-05-31 09:10:08
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的区别详解就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
上一篇: PHP基础学习之流程控制的实现分析
推荐阅读
-
Python中列表和元组的使用方法和区别详解
-
python dict.get()和dict['key']的区别详解
-
Python中列表和元组的使用方法和区别详解
-
详解Python中 __get__和__getattr__和__getattribute__的区别
-
python dict.get()和dict['key']的区别详解
-
Python中__init__和__new__的区别详解
-
Python中内置数据类型list,tuple,dict,set的区别和用法
-
Python 利用内置set函数对字符串和列表进行去重的方法
-
详解Python中 __get__和__getattr__和__getattribute__的区别
-
对Tensorflow中权值和feature map的可视化详解