Q:

Write a Python program to count the same pair in three given lists

0

Write a Python program to count the same pair in three given lists

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

def count_same_pair(nums1, nums2, nums3):
    result = sum(m == n == o for m, n, o in zip(nums1, nums2, nums3))
    return result
nums1 = [1,2,3,4,5,6,7,8]
nums2 = [2,2,3,1,2,6,7,9]
nums3 = [2,1,3,1,2,6,7,9]
print("Original lists:")
print(nums1)
print(nums2)
print(nums3)
print("\nNumber of same pair of the said three given lists:")
print(count_same_pair(nums1, nums2, nums3))

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now