“Python odejmij jedną listę od drugiej” Kod odpowiedzi

Jak odjąć 2 listy w Pythonie

[item for item in x if item not in y]
Velvet Thunder

Odejmij jedną listę od innego Pythona

 c = [x for x in a if x not in b]
talhapythoneer

Python odejmij jedną listę od drugiej

# Subtract list1 from list2 (find only items not in both lists)
list1 = [2, 2, 2]
list2 = [1, 1, 1]
difference = []   # initialization of result list

zip_object = zip(list1, list2)

for list1_i, list2_i in zip_object:
    difference.append(list1_i-list2_i) # append each difference to list

print(difference)
Trained Tuna

Odpowiedzi podobne do “Python odejmij jedną listę od drugiej”

Pytania podobne do “Python odejmij jedną listę od drugiej”

Więcej pokrewnych odpowiedzi na “Python odejmij jedną listę od drugiej” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu