gpt4 book ai didi

python - 在python中识别列表中的公共(public)元素

转载 作者:太空宇宙 更新时间:2023-11-04 04:42:37 24 4
gpt4 key购买 nike

我有两个列表。我需要比较元素列表中的任何元素是否匹配。输入:

a = ['1001,1715']
b = ['1009,1715']

输出:1715

请教一下怎么做?我尝试这样做:

set(''.join(a))

set(''.join(b)) 

但它给了我 {'5', '0', '7', ',', '1'}。如何将 ['1001,1715'] 转换为 [1001,1715]

最佳答案

a = ['1001,1715']
b = ['1009,1715']

def fun(a):
return a[0].split(",")

def intersect(a, b):
return list(set(a) & set(b))

print(intersect(fun(a),fun(b)))

关于python - 在python中识别列表中的公共(public)元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50314574/

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