get different values of an array + python code example
Example 1: find different values from two lists python
list_difference = [item for item in list1 if item not in list2]
Example 2: find number of common element in two python array
len([x for x in list1 if x in list2])