需求
找出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]
2024-02-19 16:13:46
找出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]
下一篇:文件共享存储服务-ftp