列表最近我只好找哪個列表的東西是我用:Python中找到一個值列表
def findPoint(haystack, needle): # haystack = [[1,2,3], [4,5]...,[6,7,8,9]]
for x in range(len(haystack)):
if needle in haystack[x]:
return x
raise Exception("needle: " + str(needle) + " not in haystack")
有一個haystack.index(針)方法。 問題是:「有沒有更好的方法來做到這一點?」
我用的是指數在另一個類似的功能這個。 'if index1!= index2:haystack [index1] .extend(haystack.pop(index2))' – mbowden