How to compare two lists in PythonPython provides multiple ways to compare the two lists. Comparison is the process when the data items of are checked against another data item of list, whether they are the same or not. The methods of comparing two lists are given below.
The cmp() functionThe Python cmp() function compares the two Python objects and returns the integer values -1, 0, 1 according to the comparison. Note – It doesn’t use in Python 3.x version.The set() function and == operatorPython set() function manipulate the list into the set without taking care of the order of elements. Besides, we use the equal to operator (==) to compare the data items of the list. Let’s understand the following example. Example – Output: The list1 and list2 are equal Explanation:In the above example, we have declared the two lists to be compared with each other. We converted those lists into the set and compared each element with the help of == operator. All elements are equal in both lists, then if block executed and printed the result. The sort() method with == operatorPython sort() function is used to sort the lists. The same list’s elements are the same index position it means; lists are equal. Note – In the sort() method, we can pass the list items in any order because we are sorting the list before comparison.Let’s understand the following example – Example – Output: The list1 and list3 are not the same The list1 and list2 are not the same The collection.counter() functionThe collection module provides the counter(), which compare the list efficiently. It stores the data in dictionary format <value>:<frequency> and counts the frequency of the list’s items. Note – The order of the list’s elements doesn’t matter in this function.Example – Output: The lists list1 and list2 are not the same The lists list1 and list3 are the same The reduce() and map()The map() function accepts a function and Python iterable object (list, tuple, string, etc) as an arguments and returns a map object. The function implements to each element of the list and returns an iterator as a result. Besides, The reduce() method implements the given function to the iterable object recursively. Here, we will use both methods in combination. The map() function would implement the function (it can be user-define or lambda function) to every iterable object and the reduce() function take care of that would apply in recursive manner. Note – We need to import the functool module to use the reduce() function.Let’s understand the following example. Example – Output: The list1 and list2 are not the same The list1 and list3 are the same In this section, we have covered various methods of comparing two lists in Python. |
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/263755.html