Answers for "subtract each elements of a list with another python"

2

python subtract one list from another

# 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)
Posted by: Guest on November-30-2020
1

subtract one list from another python

c = [x for x in a if x not in b]
Posted by: Guest on July-19-2021

Code answers related to "subtract each elements of a list with another python"

Python Answers by Framework

Browse Popular Code Answers by Language