我正在尝试编写一个代码,以便搜索将返回任何子列表,其中搜索的两个元素都是列表的前两个元素。基本上我想要如果我有
data = [[4,3,0],[4,7], [6,3], [9,2], [4,3]]
search = 4,3
返回
there [4,3,0]
there [4,3]
目前,我有
search = [4,3]
data = [[4,3,0],[4,7], [6,3], [9,2], [4,3]]
if search in data:
print("there", search)
else:
print("not there")
但这只会返回
there [4,3]
编辑:我还需要能够附加包含搜索的子列表。
谢谢你的帮助。干杯! 5813