您可以让Counter不写出“ Counter”吗?

您可以让Counter不写出“ Counter”吗?,第1张

您可以让Counter不写出“ Counter”吗?

您可以将传递

Counter
dict

counter = collections.Counter(...)counter = dict(counter)

In [56]: import collectionsIn [57]: counter = collections.Counter(['Foo']*12)In [58]: counterOut[58]: Counter({'Foo': 12})In [59]: counter = dict(counter)In [60]: counterOut[60]: {'Foo': 12}

不过,我更喜欢JBernardo的想法:

In [66]: import jsonIn [67]: counterOut[67]: Counter({'Foo': 12})In [68]: json.dumps(counter)Out[68]: '{"Foo": 12}'

这样,您就不会丢失

counter
的特殊方法,例如
most_common
,并且在Python根据构造字典时不需要额外的临时内存
Counter



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5663374.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存