# list of cars
cars = ['Benz','BMW','Ford','Ferrari','volkswagen','BMW']
numbers= [1,5,2,5,7,1,3,3,1,6]
# BWM Count in list
bmwCount = cars.count('BMW')
print("total no BMW count is = ",bmwCount)
# number count in list
numCount = numbers.count(1)
print("The count of number 1 is = ",numCount)
# if you give number in string format
numCount = numbers.count('3')
print("The count of number 3 is= ",numCount)