gpt4 book ai didi

字典的 Python 列表理解示例

转载 作者:行者123 更新时间:2023-11-28 21:21:14 24 4
gpt4 key购买 nike

I have the following script:

dict_class = dict()
for p in points:
dict_class[p.class] = dict_class.get(p.class, 0) + 1

print dict_class
{1: 1314, 2: 1050}

其中“points”是一个值列表。我的问题是,是否可以转换字典的列表推导式以加快我的代码速度?

最佳答案

from collections import Counter 
from operator import attrgetter
Counter(map(attrgetter("class"),points))

关于字典的 Python 列表理解示例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22001394/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com