count function python code example
Example 1: count similar values in list python
MyList = ["a", "b", "a", "c", "c", "a", "c"]
return my_dict = {i:MyList.count(i) for i in MyList}
{'a': 3, 'c': 3, 'b': 1}
from collections import Counter
return my_dict = dict(Counter(MyList))
{'a': 3, 'c': 3, 'b': 1}
Example 2: freq count in python
freq = {}
for item in my_list:
if (item in freq):
freq[item] += 1
else:
freq[item] = 1
Example 3: string count substring occurences pytohn
string.count(substring, [start_index], [end_index])
Example 4: python count
Format: string.count(sub, start= 0,end=len(string))
string = "Add Grepper Answer"
print(string.count('e')
>>> 3
Example 5: count in python
it counts the number of elements in the list or in the string(words)
Example 6: what is the use of count function in python
count = 0
while count < 10 :
print("Hello")
count += 1