“Python Compare duas listas” Respostas de código

Python Compare duas listas

>>> a = [1, 2, 3, 4, 5]
>>> b = [9, 8, 7, 6, 5]
>>> set(a) & set(b)
{5}
Stupid Shrike

Compare listas de elementos Python

[ x&y for (x,y) in zip(list_a, list_b)]
Bored Coder

Como comparar duas listas elemento por elemento em Python e Return Matched Element

>>> [i for i, j in zip(a, b) if i == j]
[5]
Innocent Ibex

Python Compare duas listas

a = [1, 2, 3, 4, 5]
b = [9, 8, 7, 6, 5]

returnMatches(a, b)
#would return [5], for instance
Stupid Shrike

Respostas semelhantes a “Python Compare duas listas”

Perguntas semelhantes a “Python Compare duas listas”

Mais respostas relacionadas para “Python Compare duas listas” em Python

Procure respostas de código populares por idioma

Procurar outros idiomas de código