python list应用
python某群验证求list列表偶数和(一行)>>> a = [1,2,5,8,9,12,14]>>> print sum([re for re in a if re % 2 == 0 ])36
?