首页  >  文章  >  运维  >  python如何找到列表中出现最频繁的数

python如何找到列表中出现最频繁的数

王林
王林转载
2023-05-13 22:28:041090浏览

找到列表中出现最频繁的数

test= [1,2,3,4,2,2,3,1,4,4,4]
print(max(set(test),key=test.count))
#-> 4

python有哪些常用库

python常用的库:1.requesuts;2.scrapy;3.pillow;4.twisted;5.numpy;6.matplotlib;7.pygama;8.ipyhton等。

以上是python如何找到列表中出现最频繁的数的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文转载于:yisu.com。如有侵权,请联系admin@php.cn删除