Revisión 81
Añadido por Manu Mora Gordillo hace alrededor de 14 años
Utils.py | ||
---|---|---|
|
||
def cmpLists(list1, list2):
|
||
|
||
onlyInList1 = set(list1).difference(list2)
|
||
onlyInList1 = set(list1).difference(set(list2))
|
||
onlyInList2 = set(list2).difference(set(list1))
|
||
inTwoLists = set(list1) & set(list2)
|
||
|
Exportar a: Unified diff
Últimos cambios