在Python中找到人数最多的年份

在Python中找到人数最多的年份,第1张

在Python中找到人数最多的年份

from collections import Counter
>>> from itertools import chain
>>> def most_pop(pop):
… pop_flat = chain.from_iterable(range(i,j+1) for i,j in pop)
… return Counter(pop_flat).most_common()

>>> most_pop([(1920, 1939), (1911, 1944), (1920, 1955), (1938, 1939)])[0]



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5630959.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-15

发表评论

登录后才能评论

评论列表(0条)

保存