Write a python function that takes two lists and returns true, if they have at least one common member.
Answers
Answered by
10
"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]))
"
Answered by
1
Answer:
ssdsdsdsdsds
Explanation:
Similar questions