Files
30-seconds-of-code/snippets/count-occurrences.md
Angelos Chalaris f6a215e9e3 Kebab file names
2023-04-27 22:00:06 +03:00

21 lines
391 B
Markdown

---
title: Count occurrences
tags: list
cover: pineapple-at-work
firstSeen: 2021-01-10T00:00:36+02:00
lastUpdated: 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`.
```py
def count_occurrences(lst, val):
return lst.count(val)
```
```py
count_occurrences([1, 1, 2, 1, 2, 3], 1) # 3
```