需求找出list中某一元素并返回所有匹配index值问题使用index()只能返回一个下标>>> cw=[0,1,2,1,1,0,1,0,0,1] >>> cw.index(1) 1 解决利用enumerate()函数构建元组>>> [i for i,x in enumerate(cw) if x == 1 ] [1, 3, 4, 6, 9]