Files
30-seconds-of-code/snippets/count_occurrences.md
Isabelle Viktoria Maciohsek 19f636408c Make expertise a field
2022-03-01 20:27:27 +02:00

386 B

title, tags, expertise, firstSeen, lastUpdated
title tags expertise firstSeen lastUpdated
Count occurrences list beginner 2021-01-10T00:00:36+02:00 2021-01-10T00:00:36+02:00

Counts the occurrences of a value in a list.

  • Use list.count() to count the number of occurrences of val in lst.
def count_occurrences(lst, val):
  return lst.count(val)
count_occurrences([1, 1, 2, 1, 2, 3], 1) # 3