位置:首页 > 软件操作教程 > 编程开发 > Python > 问题详情

python应用操作——找到列表中出现最频繁的数

提问人:ylm发布时间:2020-09-29

In [82]: test = [1,2,3,4,2,2,3,1,4,4,4]

 

In [83]: print(max(set(test),key=test.count))

4

继续查找其他问题的答案?

相关视频回答
回复(0)
返回顶部