python如何统计list中元素个数

Python统计list中不同元素个数的方法

统计list中元素个数,这里提供一个简单的方法,使用Counter(), 示例如下:

from collections import Counter

# 随便定义一个list,也可以是自己生成的
temp = [1, 2, 1, 3, 4, 2, 3, 6, 3]
count = Counter(temp)
print(count)
# 输出元素3的个数
print(count[3]) 
# 输出结果为
Counter({1: 2, 2: 2, 3: 3, 4: 1, 6: 1})

3

Counter 还有很多种用法,可以去查看官网文档哦。

你可能感兴趣的:(学习笔记)