sum() 組み込み関数 2022.03.23 2022.03.22 使い方 int / float = sum( iterable ) 渡したiterableの合計を返します list1 = [1,2,3] int1 = sum(list1) print( int1 ) #結果 6