Files
30-seconds-of-code/snippets/count_occurrences.md
2022-12-04 22:24:48 +02:00

407 B

title, tags, cover, firstSeen, lastUpdated
title tags cover firstSeen lastUpdated
Count occurrences list blog_images/pineapple-at-work.jpg 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