Answers for "list subtraction python"

4

how to subtract 2 lists in python

[item for item in x if item not in y]
Posted by: Guest on September-21-2020
1

python subtract lists

# Example usage using list comprehension:
list_a = [1, 2, 3]
list_b = [1, 1, 1]
[a_i - b_i for a_i, b_i in zip(list_a, list_b)]
--> [0, 1, 2]
Posted by: Guest on April-28-2021
1

subtract list from list python

>>> z = list(set(x) - set(y))
>>> z
[0, 8, 2, 4, 6]
Posted by: Guest on November-08-2020

Code answers related to "list subtraction python"

Python Answers by Framework

Browse Popular Code Answers by Language