“HiW Ti cuenta el número de cierto valor en Python” Código de respuesta

HiW Ti cuenta el número de cierto valor en Python

#using the .count() function where the occurence of an element you 
#want to find is the thing in the paranthesis
lista = [1,1,2,3,4,5]
print(lista.count(1))
# will return 2
Confused Chinchilla

Cómo contar valores especiales en datos en Python

df['fare'].value_counts(bins=7)
Wide-eyed Whale

Respuestas similares a “HiW Ti cuenta el número de cierto valor en Python”

Preguntas similares a “HiW Ti cuenta el número de cierto valor en Python”

Más respuestas relacionadas con “HiW Ti cuenta el número de cierto valor en Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código