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

沒有留言:

張貼留言

WOKWI ESP32 LED Control , Node-Red MQTT SQLITE  

WOKWI ESP32 LED Control ,  Node-Red  MQTT SQLITE   const char broker[] = "test.mosquitto.org" ; //const char broker[] = "br...