reduce 坐标
来源:12-5 reduce
wwhu668
2017-10-12
# 记录 coordinate = [[1, 6], [2, 7], [-1, -3]] # 一 x,y = zip(*coordinate) result = [sum(x), sum(y)] # 二 result = reduce(lambda x,y:[x[0]+y[0],x[1]+y[1]], coordinate)
写回答
2回答
-
同学 有什么问题吗?
022017-10-13 -
h4ck3r
2017-10-13
from functools import reduce list = [(1,3),(2,-2),(-2,3)] r = reduce(lambda x,y:(x[0]+y[0],x[1]+y[1]),list) print(r)
这样也可以吧
012017-10-17
相似问题