how to count in python code example

Example 1: freq count in python

freq = {} 
    for item in my_list: 
        if (item in freq): 
            freq[item] += 1
        else: 
            freq[item] = 1

Example 2: How to see how many times somting is in a list python

vowels = ['a', 'e', 'i', 'o', 'i', 'u']
count = vowels.count('i')

Example 3: python count

Format: string.count(sub, start= 0,end=len(string))
string =  "Add Grepper Answer"
print(string.count('e')
>>> 3

Example 4: count number items in list python

mylist = ["abc", "def", "ghi", "jkl", "mno", "pqr"]

print(len(mylist))

# output 6

Example 5: count in python

it counts the number of elements in the list or in the string(words)