gpt4 book ai didi

python - 对对象列表的属性求和/平均

转载 作者:IT老高 更新时间:2023-10-28 21:45:24 28 4
gpt4 key购买 nike

假设我有一个类 C,它具有属性 a

从 Python 中的 C 列表中获取 a 总和的最佳方法是什么?


我已经尝试了以下代码,但我知道这不是正确的做法:

for c in c_list:
total += c.a

最佳答案

使用 generator expression :

sum(c.a for c in c_list)

关于python - 对对象列表的属性求和/平均,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10879867/

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