Answers for "python how to get the count in a for loop"

3

freq count in python

freq = {} 
    for item in my_list: 
        if (item in freq): 
            freq[item] += 1
        else: 
            freq[item] = 1
Posted by: Guest on July-21-2020
0

count values python

from collections import Counter
values=np.ones(10)
Counter(values)
Posted by: Guest on April-01-2020

Code answers related to "python how to get the count in a for loop"

Python Answers by Framework

Browse Popular Code Answers by Language