Sum / Average an attribute of a list of objects

Use a generator expression:

sum(c.a for c in c_list)

If you are looking for other measures than sum, e.g. mean/standard deviation, you can use NumPy and do:

mean = np.mean([c.a for c in c_list])
sd = np.std([c.a for c in c_list])