w3resource

Python: Common tuples between two given lists

Python List: Exercise - 207 with Solution

Write a Python program to find the common tuples between two given lists.

Sample Solution:

Python Code:

def test(list1, list2):
    result =  set(list1).intersection(list2)
    return list(result)
list1 =  [('red', 'green'), ('black', 'white'), ('orange', 'pink')] 
list2 =  [('red', 'green'), ('orange', 'pink')] 
print("\nOriginal lists:")
print(list1)
print(list2)
print("\nCommon tuples between two said lists")
print(test(list1,list2)) 
list1 =  [('red', 'green'), ('orange', 'pink')] 
list2 =  [('red', 'green'), ('black', 'white'), ('orange', 'pink')] 
print("\nOriginal lists:")
print(list1)
print(list2)
print("\nCommon tuples between two said lists")
print(test(list1,list2))

Sample Output:

Original lists:
[('red', 'green'), ('black', 'white'), ('orange', 'pink')]
[('red', 'green'), ('orange', 'pink')]

Common tuples between two said lists
[('orange', 'pink'), ('red', 'green')]

Original lists:
[('red', 'green'), ('orange', 'pink')]
[('red', 'green'), ('black', 'white'), ('orange', 'pink')]

Common tuples between two said lists
[('orange', 'pink'), ('red', 'green')]

Pictorial Presentation:

Python List: Common tuples between two given lists.

Flowchart:

Flowchart: Common tuples between two given lists.

Visualize Python code execution:

The following tool visualize what the computer is doing step-by-step as it executes the said program:


Python Code Editor:

Have another way to solve this solution? Contribute your code (and comments) through Disqus.

Previous: Write a Python program to remove additional spaces in a given list.
Next: Sum a list of numbers. Write a Python program to sum the first number with the second and divide it by 2, then sum the second with the third and divide by 2, and so on.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

Python: Tips of the Day

Returns True if the provided function returns True for every element in the list, False otherwise:

Example:

def tips_every(lst, fn=lambda x: x):
  return all(map(fn, lst))

print(tips_every([2, 4, 3], lambda x: x > 1))
print(tips_every([1, 2, 3]))

Output:

True
True