1.

Write a python function that takes two lists and returns true, if they have at least one common member.

Answer»

"Given below is the python FUNCTION that TAKES TWO lists and returns true, if they have at least ONE COMMON member you have asked for in the question. The codes should be entered as below

defcommon_data(list1, list2):

result = False

for x in list1:

for y in list2:

if x == y:

result = True

return result

print(common_data([1,2,3,4,5], [5,6,7,8,9]))

print(common_data([1,2,3,4,5], [6,7,8,9]))

"



Discussion

No Comment Found