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