Hola, hallamos la respuesta a lo que buscas, deslízate y la hallarás más abajo.
Ejemplo 1: contar valores similares en list python
MyList =["a","b","a","c","c","a","c"]return my_dict =i:MyList.count(i)for i in MyList
# returns :'a':3,'c':3,'b':1
# ORfrom collections import Counter
return my_dict =dict(Counter(MyList))
# returns :'a':3,'c':3,'b':1
# the both returns the same so it's up to you to choose the one you prefere ;)
Ejemplo 2: cómo contar cosas en una lista python
list.count(element)
list1 =['red','green','blue','orange','green','gray','green']
color_count = list1.count('green')print('The count of color: green is ', color_count)
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)