# Python CodeRecipe|sum()の使い方

HomeFunctions

# sum()の例1

Add all items in a tuple, and return the result:

    a = (1, 2, 3, 4, 5)x = sum(a)

# sum()の定義及び使い方

sum()関数は数値、sum 繰り返し可能なすべての項目の。

# sum()の構文

    sum(iterable, 
    start)

# sum()の引数

反復可能な 必須。合計する順序

スタート オプション。戻り値に追加される値:

# sum()の例2

Start with the number 7, and add all the items in a tuple to this number:

    a = (1, 2, 3, 4, 5)x = sum(a, 7)

HomeFunctions