Answers for "find the count of word in a list"

0

How to take total count of words in the list python

#How to find total count of "BMW" cars from the list

car_list = ["BMW", "Audi", "BMW", "Mercedez", "BMW", "Ferrari"]

count = 0

for cars in car_list:
    if cars == "BMW":
        count = count + 1
print("Total BMW Cars in Garage are:-", count)
Posted by: Guest on March-30-2021

Code answers related to "find the count of word in a list"

Python Answers by Framework

Browse Popular Code Answers by Language