Update count_occurences.md

This commit is contained in:
Isabelle Viktoria Maciohsek
2020-10-11 10:29:24 +03:00
committed by GitHub
parent 1e16cd5298
commit 88dceb260a

View File

@ -5,7 +5,7 @@ tags: list,beginner
Counts the occurrences of a value in a list.
- Use the `count` method of Python's list object to count the number of occurrences.
- Use `list.count()` to count the number of occurrences of `val` in `lst`.
```py
def count_occurrences(lst, val):