当前位置:  开发笔记 > 编程语言 > 正文

Python函数返回索引0处的值?

如何解决《Python函数返回索引0处的值?》经验,为你挑选了1个好方法。



1> Bhargav Rao..:

你需要使用 operator.itemgetter

>>> import operator
>>> pairs = [(0,1), (5,3)]
>>> xcoords = map(operator.itemgetter(0), pairs)
>>> xcoords
[0, 5]

在Python3中,map返回一个map对象,因此你需要list对它进行调用.

>>> list(map(operator.itemgetter(0), pairs))
[0, 5]


FWIW,我发现`lambda p:p [0]`比`operator.itemgetter(0)更清晰`
@BhargavRao,itemgetter比lambda快,所以绝对不是性能
推荐阅读
臭小子
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有