How to count the occurrences of an item in a list in Python

To count the number of occurrences of an item in a list, just use the count() method.

car_brands = ['ferrari', 'bmw', 'mclaren', 'bmw', 'bmw', 'ferrari']

print(car_brands.count('bmw'))
print(car_brands.count('ferrari'))
3
2