美文网首页
一些学习python的资源网站(持续更新)

一些学习python的资源网站(持续更新)

作者: realnickman | 来源:发表于2019-03-20 05:48 被阅读0次
# collections.Counter lets you find the most common
# elements in an iterable:

>>> import collections
>>> c = collections.Counter('helloworld')

>>> c
Counter({'l': 3, 'o': 2, 'e': 1, 'd': 1, 'h': 1, 'r': 1, 'w': 1})

>>> c.most_common(3)
[('l', 3), ('o', 2), ('e', 1)]

相关文章

网友评论

      本文标题:一些学习python的资源网站(持续更新)

      本文链接:https://www.haomeiwen.com/subject/ookamqtx.html