python 列表 输出重复值以及对应的角标 2024年5月27日 python 小练习 0条评论 5次阅读 0人点赞 a = [99,1,2,1,3,4] # 集合存储重复数据 b=set() for i in a: if a.count(i)>1: b.update([i]) dict ={} # 遍历重复数据 for j in…