L = [1,2,3,4,5] result = 0 for e in L: result += e
print result
(別解)
print reduce(lambda a,b: a+b, L)
0 件のコメント:
コメントを投稿