python 中对list 对象中的记录求和 list = [{'a':12,'b':3},{'a':14,'b':3},{'a':3,'b':3},{'a':4,'b':3}]print reduce(lambda x,y:x+y,[a['a'] for a in list ])