fork(11) download
  1. import collections
  2. numeros = [5, 3, 1, 2, 3, 4, 5, 5, 5]
  3. repetidos = collections.Counter(numeros)
  4. print(repetidos[5])
Success #stdin #stdout 0s 10248KB
stdin
Standard input is empty
stdout
4