标签: python list
如何计算3列表中出现的次数,例如[[1,2,3,4],[2,3,4,5],[5,6,7,5]] 输出应该类似于[1,1,0]
[[1,2,3,4],[2,3,4,5],[5,6,7,5]]
[1,1,0]
答案 0 :(得分:6)
您可以使用方法list.count(element):
list.count(element)
my_lists = [[1,2,3,4], [2,3,4,5], [5,6,7,5]] [l.count(3) for l in my_lists] >> [1, 1, 0]