在python列表中交换元组/列表中的值?

Swap values in a tuple/list inside a list in python?(在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列表中交换元组/列表中的值?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Leetcode 234: Palindrome LinkedList(Leetcode 234:回文链接列表)
How do I read an Excel file directly from Dropbox#39;s API using pandas.read_excel()?(如何使用PANDAS.READ_EXCEL()直接从Dropbox的API读取Excel文件?)
subprocess.Popen tries to write to nonexistent pipe(子进程。打开尝试写入不存在的管道)
I want to realize Popen-code from Windows to Linux:(我想实现从Windows到Linux的POpen-code:)
Reading stdout from a subprocess in real time(实时读取子进程中的标准输出)
How to call type safely on a random file in Python?(如何在Python中安全地调用随机文件上的类型?)