说明
《Python 教程》 持续更新中,提供建议、纠错、催更等加作者微信: gairuo123(备注:pandas教程)和关注公众号「盖若」ID: gairuo。跟作者学习,请进入 Python学习课程。欢迎关注作者出版的书籍:《深入浅出Pandas》 和 《Python之光》。
(编码题)用 Python 随机生成 99 个 1 到 100 的数字,统计重复数量最多的前 5 个数字。
Python 代码如下:
from collections import Counter
import random
nums = random.choices(range(1, 100), k=99)
len(nums)
# 99
counter = Counter(nums)
most_common = counter.most_common(10)
most_common
'''
[(76, 5),
(78, 4),
(96, 4),
(7, 3),
(25, 3),
(58, 2),
(60, 2),
(32, 2),
(98, 2),
(83, 2)]
'''
for num, times in most_common:
print(f'{num} 出现了 {times} 次.')
'''
43 出现了 4 次.
34 出现了 4 次.
62 出现了 4 次.
51 出现了 3 次.
35 出现了 3 次.
72 出现了 3 次.
85 出现了 3 次.
97 出现了 3 次.
53 出现了 3 次.
26 出现了 2 次.
'''
查看相关链接中的知识。
(完)
更新时间:2024-08-16 22:55:29 标签:python 习题 随机