Python: Sum of all counts in a collections
Python Basic: Exercise-125 with Solution
Write a Python program to sum of all counts in a collections.
Sample Solution:-
import collections
num = [2,2,4,6,6,8,6,10,4]
print(sum(collections.Counter(num).values()))
============ RESTART: F:/Python_APSC/py-ex-basic-125.py =============
9
>>>
沒有留言:
張貼留言