如何计算python列表中单独列表中的数字?

时间:2012-11-09 22:40:27

标签: python list

如何计算3列表中出现的次数,例如[[1,2,3,4],[2,3,4,5],[5,6,7,5]] 输出应该类似于[1,1,0]

1 个答案:

答案 0 :(得分:6)

您可以使用方法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]