gpt4 book ai didi

python - Python中两组元组的区别

转载 作者:太空宇宙 更新时间:2023-11-03 14:11:33 25 4
gpt4 key购买 nike

我有两组元组 ab

a = set([(1,'a'),(34,'b'), (82,'c')])
b = set([(8,'a'),(98,'c')])

我想要一个集合 c 这样

c = set([(34,'b')])

在 python 中执行此操作的最有效方法是什么?

最佳答案

我猜 O(n) 是最有效的:

>>> b2 = {x for n,x in b}
>>> c = {(n,x) for (n,x) in a if x not in b2}
>>> c
{(34, 'b')}

关于python - Python中两组元组的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37422290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com