###查看各个标签类的数目 b=[1,2,3,3,3,4,4,5] dict1={} for i in b: if i not in dict1: dict1[str(i)]=0 dict1[str(i)]+=1 dict1