スポンサーリンク

[python] リスト要素すべての和

リスト要素すべての和を取得するには、

sumメソッドで取得できます。

 

サンプルコード

samples = [1, 2, 3]

print(sum(samples)) # 6