def common_elements(list1, list2):
"""
Return a list containing the elements which are in both list1 and list2
>>> common_elements([1,2,3,4,5,6], [3,5,7,9])
[3, 5]
>>> common_elements(['this','this','n','that'],['this','not','that','that'])
['this', 'that']
"""
for element in list1:
if element in list2:
return list(element)
到目前为止,但似乎无法让它发挥作用!
有任何想法吗?
原文由 Daniel 发布,翻译遵循 CC BY-SA 4.0 许可协议
使用 Python 的 集合交集: