Swap values in a tuple/list inside a list in python?(在python列表中交换元组/列表中的值?)
问题描述
我有一个这样的元组列表:
I have a list of tuples like this:
[('foo','bar'),('foo1','bar1'),('foofoo','barbar')]
在 python 中(在非常低的 cpu/ram 机器上运行)交换这样的值的最快方法是什么...
What is the fastest way in python (running on a very low cpu/ram machine) to swap values like this...
[('bar','foo'),('bar1','foo1'),('barbar','foofoo')]
我目前正在使用:
for x in mylist:
self.my_new_list.append(((x[1]),(x[0])))
有没有更好更快的方法???
Is there a better or faster way???
推荐答案
你可以使用map:
map (lambda t: (t[1], t[0]), mylist)
或列表理解:
[(t[1], t[0]) for t in mylist]
当需要 lambda 时,列表推导式是首选并且据说比 map 快得多,但是请注意,列表推导式有一个严格的评估,也就是说,如果您担心内存,它将在绑定到变量时立即进行评估消费使用 generator 代替:
List comprehensions are preferred and supposedly much faster than map when lambda is needed, however note that list comprehension has a strict evaluation, that is it will be evaluated as soon as it gets bound to variable, if you're worried about memory consumption use a generator instead:
g = ((t[1], t[0]) for t in mylist)
#call when you need a value
g.next()
这里有更多详细信息:Python 列表理解 Vs.地图
这篇关于在python列表中交换元组/列表中的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在python列表中交换元组/列表中的值?


基础教程推荐
- Python kivy 入口点 inflateRest2 无法定位 libpng16-16.dll 2022-01-01
- 用于分类数据的跳跃记号标签 2022-01-01
- 如何让 python 脚本监听来自另一个脚本的输入 2022-01-01
- 何时使用 os.name、sys.platform 或 platform.system? 2022-01-01
- 如何在海运重新绘制中自定义标题和y标签 2022-01-01
- 使用PyInstaller后在Windows中打开可执行文件时出错 2022-01-01
- 筛选NumPy数组 2022-01-01
- 在 Python 中,如果我在一个“with"中返回.块,文件还会关闭吗? 2022-01-01
- Dask.array.套用_沿_轴:由于额外的元素([1]),使用dask.array的每一行作为另一个函数的输入失败 2022-01-01
- 线程时出现 msgbox 错误,GUI 块 2022-01-01