2018年1月11日 星期四

Python: Sum of all counts in a collections

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
>>> 

沒有留言:

張貼留言

MQTT Explorer 與 Node-Red 介面的實驗

 MQTT Explorer 與 Node-Red 介面的實驗 MQTT EXplorer 與 Node-Red介面的設定 (1) 設定  MQTT EXplorer Client    (2)        Node-Red LED ON  --> MQTT Explor...