Python: Count the same pair in two given lists using map function
13. Count Same Pair Map
Write a Python program to count the same pair in two given lists. Use map() function.
Sample Solution:
Python Code:
Sample Output:
Original lists: [1, 2, 3, 4, 5, 6, 7, 8] [2, 2, 3, 1, 2, 6, 7, 9] Number of same pair of the said two given lists: 4
For more Practice: Solve these Related Problems:
- Write a Python program to use map to compare elements of two lists and count how many pairs are identical.
- Write a Python program to map a lambda that returns 1 for matching elements in two lists, then sum the results.
- Write a Python program to use map to generate a list of booleans indicating equality between two lists and then count the True values.
- Write a Python program to use map to produce a list of indices where elements of two lists are the same, and then count these indices.
Go to:
Next: Write a Python program to interleave two given list into another list randomly. use map() function.
Python Code Editor:
Have another way to solve this solution? Contribute your code (and comments) through Disqus.
What is the difficulty level of this exercise?
Test your Programming skills with w3resource's quiz.