Answers for "how to find the difference of the values between two lists in python"

11

2 list difference python

list1 = [1, 2, 4]
list2 = [4, 5, 6]

set_difference = set(list1) - set(list2)
list_difference = list(set_difference)

print(list_difference)

#result
[1,2]
Posted by: Guest on June-05-2020
0

python list of difference beetwen values in list

>>> t
[1, 3, 6]
>>> [j-i for i, j in zip(t[:-1], t[1:])]  # or use itertools.izip in py2k
[2, 3]
Posted by: Guest on April-17-2021

Code answers related to "how to find the difference of the values between two lists in python"

Python Answers by Framework

Browse Popular Code Answers by Language