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)
In [82]: test = [1,2,3,4,2,2,3,1,4,4,4]
In [83]: print(max(set(test),key=test.count))
4
点击加载更多评论>>